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.
1 parent a77de92 commit 4511bbaCopy full SHA for 4511bba
.github/workflows/build.yml
@@ -13,10 +13,10 @@ jobs:
13
runs-on: ubuntu-latest
14
strategy:
15
matrix:
16
- go-version: [1.19.x]
+ go-version: [1.18.x, 1.20.x]
17
steps:
18
- name: Setup Go
19
- uses: actions/setup-go@v3
+ uses: actions/setup-go@v4
20
with:
21
go-version: ${{ matrix.go-version }}
22
@@ -27,4 +27,5 @@ jobs:
27
run: go test . -coverprofile=coverage.out -covermode=atomic
28
29
- name: Upload coverage to Codecov
30
+ if: ${{ matrix.go-version == '1.18.x' }}
31
run: bash <(curl -s https://codecov.io/bash)
0 commit comments