aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Martin-Dorel2020-04-27 01:33:38 +0200
committerErik Martin-Dorel2020-04-27 01:34:11 +0200
commit84b81a84db632a97cc978494f2a5609525034223 (patch)
tree5644aa5db523211c19dbf1c59cfd106ff2762e8e
parent9473f86264df5cc22806c5b13889e8a71ba196dc (diff)
[CI] fail-fast:=false
href: https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast
-rw-r--r--.github/workflows/test.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index f6ee2835..984f0cc5 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -28,6 +28,8 @@ jobs:
# at most 20 concurrent jobs per free account
# cf. https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#usage-limit
max-parallel: 4
+ # don't cancel all in-progress jobs if one matrix job fails:
+ fail-fast: false
steps:
- uses: actions/checkout@v2
@@ -58,6 +60,8 @@ jobs:
# at most 20 concurrent jobs per free account
# cf. https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#usage-limit
max-parallel: 6
+ # don't cancel all in-progress jobs if one matrix job fails:
+ fail-fast: false
steps:
- uses: actions/checkout@v2