From b0b0670115570d5604284715b97c0fca95b8f169 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 16 Mar 2023 20:31:22 +0100 Subject: [PATCH] GitHub Actions: fail-fast: false See which tests pass and which fail. --- .github/workflows/main.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9784349..2ec31b5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,13 +12,15 @@ jobs: runs-on: ubuntu-20.04 strategy: + fail-fast: false matrix: python-version: - - 2.7 - - 3.7 - - 3.8 - - 3.9 + - '2.7' + - '3.7' + - '3.8' + - '3.9' - '3.10' + - '3.11' steps: - uses: actions/checkout@v3