Skip to content

Commit 95a8c0e

Browse files
authored
[ci] Fail fast on CI errors (#184)
Set the `jobs.build_test.strategy.fail-fast` GitHub CI configuration option to `false`, ensuring that other CI jobs continue executing even when one has failed. This helps speed up development by surfacing more errors at a time.
1 parent 27aea67 commit 95a8c0e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
strategy:
22+
# By default, this is set to `true`, which means that a single CI job
23+
# failure will cause all outstanding jobs to be canceled. This slows down
24+
# development because it means that errors need to be encountered and
25+
# fixed one at a time.
26+
fail-fast: false
2227
matrix:
2328
# See `INTERNAL.md` for an explanation of these pinned toolchain
2429
# versions.

0 commit comments

Comments
 (0)