Skip to content

Commit 1408c9d

Browse files
committed
Disable fail-fast by default in CI to conserve computing resources.
1 parent 3515bb5 commit 1408c9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ${{ matrix.platform.os }}
3232
needs: [lint, check-msrv, examples]
3333
strategy:
34-
fail-fast: false
34+
fail-fast: ${{ !contains(github.event.pull_request.labels.*.name, 'CI-no-fail-fast') }}
3535
matrix:
3636
python-version: ["3.7", "3.8", "3.9", "3.10"]
3737
platform: [

0 commit comments

Comments
 (0)