Skip to content

update codecov action #933

update codecov action

update codecov action #933

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
run: pip install pre-commit
- name: run all precommits
run: pre-commit run --files dascore/**/*