From f4657ba7aeda14690f53e35150b58c7a7d1dffd6 Mon Sep 17 00:00:00 2001 From: Piotr Konopka Date: Fri, 21 Nov 2025 10:59:27 +0100 Subject: [PATCH] Continue all remaining jobs in make check if one fails Given that our checks are rather lightweight, it's useful to avoid cancelling other jobs in the matrix if one fails. This way we can recognize if an issue is platform-specific or is intermittent. --- .github/workflows/control.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/control.yml b/.github/workflows/control.yml index 57de4f79..5ad85275 100644 --- a/.github/workflows/control.yml +++ b/.github/workflows/control.yml @@ -11,6 +11,7 @@ jobs: name: Basic Make Check runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [macOS-latest, ubuntu-24.04] go: [ '1.24.2' ]