Skip to content

Commit 9017468

Browse files
committed
run ruff in github actions
1 parent c0f5707 commit 9017468

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,11 @@ jobs:
3232
run: |
3333
poetry install
3434
35-
- name: Lint with flake8, black, isort and mypy
35+
- name: Lint with Ruff and Mypy
3636
run: |
37-
poetry run isort --check .
38-
poetry run black --check .
39-
poetry run flake8 .
37+
poetry run ruff check --output-format=github .
38+
poetry run ruff format --diff
4039
poetry run mypy .
41-
poetry run pydocstyle daffy/
4240
4341
- name: Test with pytest
4442
run: |

0 commit comments

Comments
 (0)