From 5f17107f0be796fe510713bebeba7562aa5c322b Mon Sep 17 00:00:00 2001 From: Morten Brekkevold Date: Thu, 30 Nov 2023 11:47:43 +0100 Subject: [PATCH] Continue matrix on error This attempts to ensure that the whole matrix isn't cancelled when a single job fails. Based on https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#handling-failures --- .github/workflows/build-and-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index def0d1e879..c6733eef3c 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -8,6 +8,7 @@ jobs: strategy: max-parallel: 4 + continue-on-error: true matrix: python-version: [3.7, 3.8, 3.9, 3.11]