Skip to content

Commit

Permalink
chore: change .github/workflows/checks.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mlevieux committed Jan 26, 2024
1 parent 7d309b8 commit 1c7aa38
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.20' ]
go-version: [ '1.21' ]
steps:
- uses: actions/checkout@v1
- name: Set up Go ${{ matrix.go-version }}
Expand All @@ -18,12 +18,15 @@ jobs:

coverage:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.21' ]
steps:
- uses: actions/checkout@v1
- name: Set up Go 1.20
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v1
with:
go-version: '1.20'
go-version: ${{ matrix.go-version }}
- name: Run tests
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
Expand Down

0 comments on commit 1c7aa38

Please sign in to comment.