diff --git a/.github/workflows/ci-v2.yaml b/.github/workflows/ci-v2.yaml index 883d4e19..6b30b2b0 100644 --- a/.github/workflows/ci-v2.yaml +++ b/.github/workflows/ci-v2.yaml @@ -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: @@ -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'] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ae38d85..140b6104 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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'] @@ -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']