From 858e7a28a11b18ec1d929ec7fc8d93b8aadb3257 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 15 Oct 2024 19:36:13 +0200 Subject: [PATCH] GitHub Actions: review: strategy: fail-fast: false (#893) https://docs.github.com/en/enterprise-cloud@latest/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast Co-authored-by: Joel Lefkowitz --- .github/workflows/review.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index 58fb45ec..fe831382 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -7,6 +7,7 @@ jobs: name: Run linters and tests runs-on: "ubuntu-20.04" strategy: + fail-fast: false matrix: python: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]