Skip to content

Commit

Permalink
run ruff in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vertti committed Jan 12, 2025
1 parent c0f5707 commit 9017468
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,11 @@ jobs:
run: |
poetry install
- name: Lint with flake8, black, isort and mypy
- name: Lint with Ruff and Mypy
run: |
poetry run isort --check .
poetry run black --check .
poetry run flake8 .
poetry run ruff check --output-format=github .
poetry run ruff format --diff
poetry run mypy .
poetry run pydocstyle daffy/
- name: Test with pytest
run: |
Expand Down

0 comments on commit 9017468

Please # to comment.