From 08ba8ca7fc1a67afa33ba9ccc0720e8ea5a8f2aa Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Tue, 21 Sep 2021 11:25:18 +0200 Subject: [PATCH] ci: disable fail fast Signed-off-by: Mark Sagi-Kazar --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5267fe2..389898a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,9 @@ jobs: name: Build runs-on: ${{ matrix.os }} strategy: + # Fail fast is disabled because there are Go version specific features and tests + # that should be able to fail independently. + fail-fast: false matrix: os: [ubuntu-latest, macos-latest] go: ['1.14', '1.15', '1.16', '1.17']