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 18c794d commit 5867cc9Copy full SHA for 5867cc9
.github/workflows/test.yml
@@ -17,8 +17,9 @@ jobs:
17
- uses: actions/checkout@v3
18
- run: poetry install --only=lint
19
- run: poetry run flake8 --show-source
20
+ id: flake8
21
- run: poetry run black --check --diff .
- if: ${{ success() || failure() }}
22
+ if: success() || steps.flake8.conclusion == 'failure'
23
test:
24
runs-on: ubuntu-22.04
25
strategy:
0 commit comments