From 2ffc74e2e30dfd2c4c3f6b0d0b8bbf507dc661a9 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Fri, 1 Jul 2022 20:11:26 -0400 Subject: [PATCH] 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. --- .github/workflows/protocol.yml | 1 + .github/workflows/ruby.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/protocol.yml b/.github/workflows/protocol.yml index 5e2ca2ea2..cbe2d9055 100644 --- a/.github/workflows/protocol.yml +++ b/.github/workflows/protocol.yml @@ -19,6 +19,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 strategy: + fail-fast: false matrix: ruby-version: ['2.6', '2.7', '3.0', '3.1', 'head', 'debug'] diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index a2db74e1c..c53dd8254 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -19,6 +19,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 strategy: + fail-fast: false matrix: ruby-version: ['2.6', '2.7', '3.0', '3.1', 'head', 'debug']