From 4f742218ef56555ee8cb75c7052b98b5fd199278 Mon Sep 17 00:00:00 2001 From: Albin Kerouanton Date: Sat, 28 Oct 2023 13:18:33 +0200 Subject: [PATCH] ci: Disable fail-fast strategy Signed-off-by: Albin Kerouanton --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e13be28b..658a3ea3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,7 @@ jobs: name: Test ${{ matrix.platform }} (${{ matrix.go }}) timeout-minutes: 10 strategy: + fail-fast: false matrix: go: ["1.13.x", "1.20.x", "1.21.x"] platform: [ubuntu-20.04] @@ -34,6 +35,7 @@ jobs: name: Test ${{ matrix.platform }} (${{ matrix.go }}) timeout-minutes: 10 strategy: + fail-fast: false matrix: go: ["1.13.x", "1.20.x", "1.21.x"] platform: [windows-latest, macos-latest] @@ -54,6 +56,7 @@ jobs: name: Lint ${{ matrix.platform }} timeout-minutes: 10 strategy: + fail-fast: false matrix: platform: [ubuntu-20.04, windows-latest, macos-latest] runs-on: ${{ matrix.platform }}