Skip to content

Commit e8e7634

Browse files
committed
github: add lint check for isort
1 parent efd7416 commit e8e7634

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ jobs:
1919
- run: poetry run flake8 --show-source
2020
id: flake8
2121
- run: poetry run black --check --diff .
22+
id: black
2223
if: success() || steps.flake8.conclusion == 'failure'
24+
- run: poetry run isort --check --diff .
25+
id: isort
26+
if: success() || steps.flake8.conclusion == 'failure' || steps.black.conclusion == 'failure'
2327
test:
2428
runs-on: ubuntu-22.04
2529
strategy:

0 commit comments

Comments
 (0)