From 015aedf043f9de40c77b017e003c18e2c5761979 Mon Sep 17 00:00:00 2001 From: David Hoese Date: Mon, 16 Oct 2023 12:08:39 -0500 Subject: [PATCH] Turn off fail fast for testing in CI --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f4688f5..03dd7da 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,7 +7,7 @@ jobs: runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.experimental }} strategy: - fail-fast: true + fail-fast: false matrix: os: ["windows-latest", "ubuntu-latest", "macos-latest"] python-version: ["3.8", "3.9", "3.10"]