Skip to content

Commit

Permalink
ci: Use new Ruff --output-format switch
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxG87 committed Feb 5, 2024
1 parent 7f198e4 commit 81a0781
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- name: Check formatting with black
run: poetry run black --check .
- name: Check import ordering with ruff
run: poetry run ruff check --format=github --select I .
run: poetry run ruff check --output-format github --select I .
- name: Check static typing with mypy
run: poetry run mypy .
- name: Lint with ruff
run: poetry run ruff check --format=github .
run: poetry run ruff check --output-format github .
- name: Test with pytest
run: poetry run pytest --junitxml=junit/test-results.xml --cov-report=xml --cov-report=html

0 comments on commit 81a0781

Please sign in to comment.