Skip to content

Commit

Permalink
Update coverage and linter to go 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
mennanov committed Feb 4, 2024
1 parent 01c5d05 commit 0446ead
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go 1.20
- name: Setup Go 1.21
uses: actions/setup-go@v3
with:
go-version: '1.20'
go-version: '1.21'
- name: Run tests with coverage
run: go test -v -coverprofile=coverage.txt -covermode=atomic ./...
- uses: codecov/codecov-action@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go 1.20
- name: Setup Go 1.21
uses: actions/setup-go@v3
with:
go-version: '1.20'
go-version: '1.21'
- name: Go vet
run: go vet ./...

0 comments on commit 0446ead

Please sign in to comment.