From 54982e1a1f569a960cc6eb7a0f0f8d7ee7ab8fe1 Mon Sep 17 00:00:00 2001 From: Laurent Rene de Cotret Date: Tue, 29 Oct 2024 12:39:23 -0400 Subject: [PATCH] Do not cancel incomplete CI jobs if one of them fails --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 434892f4..ca189f6b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,6 +11,8 @@ jobs: name: ${{ matrix.os }} / ghc ${{ matrix.ghc }} runs-on: ${{ matrix.os }} strategy: + # We don't fail fast because we want to see version-specific errors + fail-fast: false matrix: os: [ubuntu-22.04, macOS-12, windows-2022] cabal: ["3.10.3.0"]