Skip to content

Commit d89897a

Browse files
committed
fix(CI): don't cancel other jobs if one fails
1 parent 16a6202 commit d89897a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/acceptance-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ jobs:
1313
strategy:
1414
matrix:
1515
cloud: [ "eks", "gke", "aks", "cloud-agnostic" ]
16+
fail-fast: false # Don't cancel other jobs if one fails
1617
# Only one instance per cloud should run at the same time
1718
concurrency:
1819
group: testacc-${{ matrix.cloud }}
19-
name: Acceptance tests (${{ matrix.cloud }})
20+
name: ${{ matrix.cloud }}
2021
runs-on: ubuntu-latest
2122
steps:
2223
- name: Checkout source

0 commit comments

Comments
 (0)