From f03336b3a2a124107d16d86924c442196aabd2f9 Mon Sep 17 00:00:00 2001 From: Joe Taber Date: Sat, 23 Sep 2023 21:43:51 -0500 Subject: [PATCH] Allow all jobs to run to completion even if one fails See: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ec3a0515..786defb1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,7 @@ jobs: build-test: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: include: - { os: windows-latest, rust-version: stable, shell: 'msys2 {0}', target: 'x86_64-pc-windows-gnu'}