From 356dd4c86b6753a628d13d2dc1611a7bb3ef76bf Mon Sep 17 00:00:00 2001 From: Timo Reimann Date: Tue, 2 May 2023 18:24:43 +0200 Subject: [PATCH] Disable fail-fast for tests (#488) If one of the e2e tests fails, the other tests are also canceled. Disable this behavior to minmize the number of complete reruns we have to do. --- .github/workflows/test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4278c97c..7fc58de0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -88,6 +88,7 @@ jobs: runs-on: ubuntu-20.04 needs: push-images strategy: + fail-fast: false matrix: kube-release: ['1.26', '1.25', '1.24', '1.23']