From 4c1e26cd5b01bf5f6516e15783243389ed51122b Mon Sep 17 00:00:00 2001 From: Kazuyoshi Kato Date: Mon, 6 Dec 2021 10:53:38 -0800 Subject: [PATCH] Don't fail-fast on Windows integration tests As like other integration tests, Windows integration tests should not fail-fast. So developers can see whether an issue is platform-specific or not. Signed-off-by: Kazuyoshi Kato --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2b38cca3..86386180b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -236,6 +236,7 @@ jobs: GOTEST: gotestsum -- strategy: + fail-fast: false matrix: os: [windows-2019, windows-2022]