Skip to content

clarify envelop frequency manipulation #1176

clarify envelop frequency manipulation

clarify envelop frequency manipulation #1176

Workflow file for this run

# Lint the code using the defined pre-commits
name: LintCode
on: [push]
jobs:
lint_code:
runs-on: ubuntu-latest
# only run if CI isn't turned off
if: github.event_name == 'push' || !contains(github.event.pull_request.labels.*.name, 'no_ci')
steps:
- uses: actions/checkout@v4
- name: install linting packages
# I added --break-system-packages due to pep 668. No need to protect
# system packages in a github container.
run: pip install pre-commit --break-system-packages
- name: run all precommits
run: pre-commit run --files dascore/**/*