Skip to content

Commit

Permalink
github: add lint check for isort
Browse files Browse the repository at this point in the history
  • Loading branch information
dlech committed Apr 21, 2023
1 parent efd7416 commit e8e7634
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ jobs:
- run: poetry run flake8 --show-source
id: flake8
- run: poetry run black --check --diff .
id: black
if: success() || steps.flake8.conclusion == 'failure'
- run: poetry run isort --check --diff .
id: isort
if: success() || steps.flake8.conclusion == 'failure' || steps.black.conclusion == 'failure'
test:
runs-on: ubuntu-22.04
strategy:
Expand Down

0 comments on commit e8e7634

Please sign in to comment.