From 1255848e3e9c2197f96f704e3563641b09f1c22c Mon Sep 17 00:00:00 2001 From: David Hewitt <1939362+davidhewitt@users.noreply.github.com> Date: Tue, 1 Sep 2020 20:56:13 +0100 Subject: [PATCH] Disable fail-fast in CI test --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d4a7685..30e65054 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,7 @@ jobs: name: python${{ matrix.python-version }}-${{ matrix.platform.python-architecture }} ${{ matrix.platform.os }} ${{ matrix.msrv }} runs-on: ${{ matrix.platform.os }} strategy: + fail-fast: false # If one platform fails, allow the rest to keep testing. matrix: rust: [stable] python-version: [3.5, 3.6, 3.7, 3.8, 3.9-dev, pypy3]