Skip to content

Commit

Permalink
Use ruff in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Aug 23, 2024
1 parent c747cc4 commit 375d041
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,14 @@ jobs:
- name: Install dependencies
run: |
poetry install -n
poetry run pip install flake8
- name: Code style
if: ${{ matrix.check-formatting }}
run: |
poetry run black --check istub
poetry run isort -c istub
poetry run ruff format --check
- name: Lint
if: ${{ matrix.check-formatting }}
run: |
poetry run ruff check istub --output-format github
poetry run ruff check
- name: Typing
run: |
poetry run pyright
Expand Down

0 comments on commit 375d041

Please sign in to comment.