We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72676e8 commit bf2cd6cCopy full SHA for bf2cd6c
.github/workflows/main.yml
@@ -10,15 +10,19 @@ on:
10
- "master"
11
jobs:
12
lint:
13
- continue-on-error: true
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v5
17
- uses: ./.github/actions/setup
18
with:
19
python: 3.12
20
- name: Lint
+ id: lint
21
run: tox -e lint
22
+ continue-on-error: true
23
+ - name: Emit warning if lint failed
24
+ if: ${{ steps.lint.outcome != 'success' }}
25
+ run: echo "::warning::Lint step failed, check logs"
26
test:
27
strategy:
28
fail-fast: false
0 commit comments