Skip to content

Commit 1f27190

Browse files
authored
prevent github from cancelling all test jobs when one fails (#285)
1 parent 65ad43f commit 1f27190

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/ci-v2.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
test-gomod-v2:
1111
runs-on: ubuntu-latest
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
go-version: [ '1.11.x', '1.12.x', '1.13.x', '1.14.x', '1.15.x', '1.16.x']
1516
env:
@@ -53,6 +54,7 @@ jobs:
5354
test-gopath-v2:
5455
runs-on: ubuntu-latest
5556
strategy:
57+
fail-fast: false
5658
matrix:
5759
# GOPATH is deprecated in go 1.13.
5860
go-version: [ '1.11.x', '1.12.x']

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
test-gomod:
1111
runs-on: ubuntu-latest
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
go-version: [ '1.11.x', '1.12.x', '1.13.x', '1.14.x', '1.15.x', '1.16.x']
1516

@@ -49,6 +50,7 @@ jobs:
4950
test-gopath:
5051
runs-on: ubuntu-latest
5152
strategy:
53+
fail-fast: false
5254
matrix:
5355
# GOPATH is deprecated in go 1.13.
5456
go-version: [ '1.11.x', '1.12.x']

0 commit comments

Comments
 (0)