From 3b8f4f6d0fa652dec07559be4393645578ce750d Mon Sep 17 00:00:00 2001 From: Rashif Ray Rahman Date: Tue, 24 Oct 2023 21:55:13 +0600 Subject: [PATCH] Prevent CI killing all tests on one failure We want all jobs in the matrix to continue running even if one or more fails in the same workflow. --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0a94191..397576e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,6 +23,7 @@ jobs: strategy: # A job can run for multiple environments matrix: + fail-fast: false python-version: ['3.8', '3.11'] os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] # The type of runner that the job will run on