Skip to content

Commit

Permalink
Use ruff instead of flake8. (#15)
Browse files Browse the repository at this point in the history
ruff is significantly faster than flake8 and covers a superset
of the same linting checks.
  • Loading branch information
clokep authored Dec 21, 2022
1 parent 1a8479c commit 6f6bb21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-poetry-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
- name: Code style (black)
run: poetry run black --check --diff .

- name: Semantic checks (flake8)
run: poetry run flake8
- name: Semantic checks (ruff)
run: poetry run ruff .

mypy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6f6bb21

Please sign in to comment.