Skip to content

Commit

Permalink
lint_python.yml: Use the new ruff check syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Aug 24, 2024
1 parent deffd65 commit 66c63c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
python-version: 3.x
- run: pip install --upgrade pip ruff setuptools wheel
- name: "Ruff: Show stopper (must-fix) issues"
run: ruff . --select=E9,F63,F7,F82,PLE,YTT --show-source .
run: ruff check --select=E9,F63,F7,F82,PLE,YTT --show-source
- name: "Ruff: All issues"
run: ruff --exit-zero --select=ALL --statistics --target-version=py37 .
- name: "Ruff: All fixable (ruff --fix) issues"
Expand Down

0 comments on commit 66c63c3

Please sign in to comment.