Skip to content

Commit

Permalink
prevent github from cancelling all test jobs when one fails (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
zevdg committed Jul 14, 2022
1 parent 65ad43f commit 1f27190
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci-v2.yaml
Expand Up @@ -10,6 +10,7 @@ jobs:
test-gomod-v2:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ '1.11.x', '1.12.x', '1.13.x', '1.14.x', '1.15.x', '1.16.x']
env:
Expand Down Expand Up @@ -53,6 +54,7 @@ jobs:
test-gopath-v2:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# GOPATH is deprecated in go 1.13.
go-version: [ '1.11.x', '1.12.x']
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -10,6 +10,7 @@ jobs:
test-gomod:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ '1.11.x', '1.12.x', '1.13.x', '1.14.x', '1.15.x', '1.16.x']

Expand Down Expand Up @@ -49,6 +50,7 @@ jobs:
test-gopath:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# GOPATH is deprecated in go 1.13.
go-version: [ '1.11.x', '1.12.x']
Expand Down

0 comments on commit 1f27190

Please sign in to comment.