Skip to content

Commit

Permalink
chore: Use Go 1.21 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
romshark committed Dec 31, 2023
1 parent cb2633f commit d138168
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go 1.20
uses: actions/setup-go@v4
with:
go-version: '1.20'
check-latest: true
- name: Checkout repository
uses: actions/checkout@v3
- name: Test
run: go test -v -race ./...
- name: Run go vet
continue-on-error: true
run: go vet ./...
- name: Install Go 1.21
uses: actions/setup-go@v4
with:
go-version: "1.21"
check-latest: true
- name: Checkout repository
uses: actions/checkout@v3
- name: Test
run: go test -v -race ./...
- name: Run go vet
continue-on-error: true
run: go vet ./...
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: "1.21"
check-latest: true
- uses: actions/checkout@v3
- name: golangci-lint
Expand Down

0 comments on commit d138168

Please sign in to comment.