From cb223d7a20aad325cc51f33d519067a85bce0b96 Mon Sep 17 00:00:00 2001 From: gabrielmer <101006718+gabrielmer@users.noreply.github.com> Date: Fri, 7 Jun 2024 16:06:11 +0200 Subject: [PATCH] chore: setting fail-fast to false in matrixed github actions (#2787) --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 415fdbf9f4..2bdb14c5ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,6 +52,7 @@ jobs: needs: changes if: ${{ needs.changes.outputs.v2 == 'true' || needs.changes.outputs.common == 'true' }} strategy: + fail-fast: false matrix: os: [ubuntu-latest, macos-13] runs-on: ${{ matrix.os }} @@ -82,6 +83,7 @@ jobs: needs: changes if: ${{ needs.changes.outputs.v2 == 'true' || needs.changes.outputs.common == 'true' }} strategy: + fail-fast: false matrix: os: [ubuntu-latest, macos-13] runs-on: ${{ matrix.os }}