From 3487660603c026cde7d1504243325bf5e2d41a9b Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 17 Dec 2023 10:54:24 +0100 Subject: [PATCH] CI: disable fail-fast for all jobs In case one job fails permanently we still would still like to know if the other jobs pass. --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b52bd97a..67f2b9fa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,6 +28,7 @@ env: jobs: test: strategy: + fail-fast: false matrix: python: - "3.8" @@ -82,6 +83,7 @@ jobs: # disabled due to lack of Rust support pypa/setuptools#3921 if: ${{ false }} strategy: + fail-fast: false matrix: python: - 39 @@ -110,6 +112,7 @@ jobs: # Integration testing with setuptools if: ${{ false }} # disabled for deprecation warnings strategy: + fail-fast: false matrix: python: - "3.10"