Skip to content

Commit

Permalink
Merge pull request #17 from kurtmckee/fix-ruff-in-ci
Browse files Browse the repository at this point in the history
Use new `ruff check` invocation requirement
  • Loading branch information
Pevtrick authored Jul 30, 2024
2 parents 8ef7bbe + fc731c3 commit 19d2002
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
run: |
pip install ruff
# stop the build if there are Python syntax errors or undefined names
ruff --output-format=github --select=E9,F63,F7,F82 .
ruff check --output-format=github --select=E9,F63,F7,F82 .
# default set of ruff rules with GitHub Annotations
ruff --output-format=github .
ruff check --output-format=github .
- name: Test with pytest
run: |
pip install pytest
Expand Down

0 comments on commit 19d2002

Please sign in to comment.