From e73c8dea6ccec9ab2f6bd3fc0eca624dba0c2331 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Wed, 14 Jun 2023 11:12:12 +0100 Subject: [PATCH] Don't cancel all jobs in CI if one job fails This will make it easier to see in #384 which tests (if any) are actually failing on which Python versions -- currently the codecov failures are just leading to all jobs being cancelled in CI --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 886c7c4c..a7a1fdc6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,6 +18,7 @@ jobs: strategy: matrix: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8"] + fail-fast: false steps: - uses: "actions/checkout@v2"