We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd7416 commit e8e7634Copy full SHA for e8e7634
.github/workflows/test.yml
@@ -19,7 +19,11 @@ jobs:
19
- run: poetry run flake8 --show-source
20
id: flake8
21
- run: poetry run black --check --diff .
22
+ id: black
23
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'
27
test:
28
runs-on: ubuntu-22.04
29
strategy:
0 commit comments