Skip to content

Commit 1ae8fbb

Browse files
authored
fix(ci): avoid flaky tests due to conflicting resources by limiting concurrency (#310)
1 parent 24d52fa commit 1ae8fbb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,11 @@ jobs:
5252
name: Matrix test
5353
needs: build
5454
runs-on: ubuntu-latest
55+
concurrency:
56+
group: ${{ github.workflow }}-${{ github.ref }}
5557
timeout-minutes: 15
5658
strategy:
57-
fail-fast: false
59+
fail-fast: true
5860
matrix:
5961
# list whatever Terraform versions here you would like to support
6062
terraform:

0 commit comments

Comments
 (0)