Skip to content

Commit 6f6bb21

Browse files
authored
Use ruff instead of flake8. (#15)
ruff is significantly faster than flake8 and covers a superset of the same linting checks.
1 parent 1a8479c commit 6f6bb21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-poetry-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
- name: Code style (black)
3434
run: poetry run black --check --diff .
3535

36-
- name: Semantic checks (flake8)
37-
run: poetry run flake8
36+
- name: Semantic checks (ruff)
37+
run: poetry run ruff .
3838

3939
mypy:
4040
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)