From 3cdcd33d68fa40b98600117f6dbce8f1783e1759 Mon Sep 17 00:00:00 2001 From: valkyrie_pilot Date: Sun, 12 Mar 2023 18:40:03 -0600 Subject: [PATCH] Disable fail-fast Failing fast is counter-productive, given that we want to know what OSes break. --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 4454203..581b4cc 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -7,7 +7,7 @@ on: jobs: build: strategy: - fail-fast: true + fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }}