From 434f7b1b1626bd0198b7066c3b17cd05d7e3c421 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Fri, 25 Dec 2020 12:07:40 +0700 Subject: [PATCH] disable fail-fast for all GitHub Actions matrix builds --- .github/workflows/cross-compile.yml | 1 + .github/workflows/integration.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/cross-compile.yml b/.github/workflows/cross-compile.yml index f3216f6b0..70db68ada 100644 --- a/.github/workflows/cross-compile.yml +++ b/.github/workflows/cross-compile.yml @@ -2,6 +2,7 @@ on: [push, pull_request] jobs: crosscompile: strategy: + fail-fast: false matrix: go: [ "1.14.x", "1.15.x" ] runs-on: ubuntu-latest diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 1cb99520b..0cd17a15e 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -3,6 +3,7 @@ on: [push, pull_request] jobs: unit: strategy: + fail-fast: false matrix: go: [ "1.14", "1.15" ] runs-on: ubuntu-latest