Skip to content

Commit

Permalink
fix ci bug
Browse files Browse the repository at this point in the history
  • Loading branch information
KPreisner committed Mar 20, 2024
1 parent da25660 commit c9d57f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@ jobs:
- name: Check formatting with black
if: success() || failure()
run: |
black --check .
poetry run black --check .
- name: Check import order with isort
if: success() || failure()
run: |
isort --check-only .
poetry run isort --check-only .
- name: Lint with flake8
if: success() || failure()
run: |
flake8 .
poetry run flake8 .
- name: Verify typing annotations
if: success() || failure()
run: |
mypy .
poetry run mypy .

0 comments on commit c9d57f1

Please sign in to comment.