Skip to content

Commit

Permalink
Add go 1.21 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
mennanov committed Sep 29, 2023
1 parent 8fd9d6c commit 3bb1eb3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Go 1.20
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
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- name: Setup Go 1.20
uses: actions/setup-go@v3
with:
go-version: '1.20'
go-version: '1.21'
- name: Go vet
run: go vet ./...
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.12', '1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20' ]
go-version: [ '1.12', '1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20', '1.21' ]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 3bb1eb3

Please sign in to comment.