From 2ffaa249523a8323b9ddbf2dbc8c689aa0fad2f7 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 4 Oct 2025 17:26:18 +0200 Subject: [PATCH] GitHub Actions: Turn off fail-fast so we can see all failures Some GitHub Actions tests are [currently failing](https://github.com/django-commons/django-tasks-scheduler/actions/runs/18165099756/job/51705194342?pr=301), so let's examine all errors. `build: strategy: fail-fast: false` * https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#jobsjob_idstrategyfail-fast --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 239924d..f30f514 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,6 +30,7 @@ jobs: runs-on: ubuntu-latest name: "Tests py${{ matrix.python-version }}/dj${{ matrix.django-version }}/${{ matrix.broker }}" strategy: + fail-fast: false max-parallel: 6 matrix: python-version: ["3.11", "3.12", "3.13"]