We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5c65a8 commit 0cb3061Copy full SHA for 0cb3061
1 file changed
.github/workflows/test.yml
@@ -25,17 +25,18 @@ jobs:
25
if: ${{ github.repository_owner == 'pypa' || github.event_name != 'schedule' }}
26
runs-on: ubuntu-latest
27
timeout-minutes: 20
28
- # Don't block PRs on linkcheck unrelated failures
29
- continue-on-error: ${{ matrix.ignore-errors || false }}
+ continue-on-error: >-
+ ${{ fromJSON(matrix.continue-on-error) }}
30
strategy:
31
- fail-fast: false
32
matrix:
33
noxenv:
34
- build
35
- - linkcheck
+ continue-on-error:
+ - false
36
include:
37
- noxenv: linkcheck
38
- ignore-errors: true
+ continue-on-error: >- # Don't block PRs on linkcheck unrelated failures
39
+ ${{ toJSON(github.event_name == 'pull_request') }}
40
41
steps:
42
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
0 commit comments