Skip to content

Commit a22e31e

Browse files
committed
Don't fail fast on CI
fail-fast defaults to true, meaning that when a CI job fails, all the other ones are cancelled. CI is flaky, so we shouldn't cancel other CI jobs when one fails.
1 parent 5076303 commit a22e31e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/protocol.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 10
2121
strategy:
22+
fail-fast: false
2223
matrix:
2324
ruby-version: ['2.6', '2.7', '3.0', '3.1', 'head', 'debug']
2425

.github/workflows/ruby.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 15
2121
strategy:
22+
fail-fast: false
2223
matrix:
2324
ruby-version: ['2.6', '2.7', '3.0', '3.1', 'head', 'debug']
2425

0 commit comments

Comments
 (0)