Skip to content

Commit

Permalink
update versions in the build workflow (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
reugn authored Jul 29, 2023
1 parent a77de92 commit 4511bba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.19.x]
go-version: [1.18.x, 1.20.x]
steps:
- name: Setup Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

Expand All @@ -27,4 +27,5 @@ jobs:
run: go test . -coverprofile=coverage.out -covermode=atomic

- name: Upload coverage to Codecov
if: ${{ matrix.go-version == '1.18.x' }}
run: bash <(curl -s https://codecov.io/bash)

0 comments on commit 4511bba

Please sign in to comment.