We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e09556b + c56805e commit 8c94293Copy full SHA for 8c94293
.github/workflows/test.yml
@@ -17,6 +17,7 @@ jobs:
17
go:
18
- '^1.18'
19
- '^1.19'
20
+ - '^1.20'
21
steps:
22
- name: Check out code into the Go module directory
23
uses: actions/checkout@v3
@@ -31,7 +32,7 @@ jobs:
31
32
- name: Test Coverage (pkg)
33
run: go test ./... -race -coverprofile=${{ steps.vars.outputs.coverage_txt }}
34
- name: Upload coverage
- if: ${{ matrix.go == '^1.19' }}
35
+ if: ${{ matrix.go == '^1.20' }}
36
uses: codecov/codecov-action@v2
37
with:
38
files: ${{ steps.vars.outputs.coverage_txt }}
0 commit comments