Skip to content

Commit

Permalink
ci: Test with Go 1.22 (#1409)
Browse files Browse the repository at this point in the history
With the release of Go 1.22,
CI should run against Go 1.21 and 1.22
  • Loading branch information
arukiidou committed Feb 7, 2024
1 parent 7db06bc commit e5745d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Expand Up @@ -16,9 +16,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.20.x", "1.21.x"]
go: ["1.21.x", "1.22.x"]
include:
- go: 1.21.x
- go: 1.22.x

steps:
- name: Checkout code
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- uses: actions/setup-go@v4
name: Set up Go
with:
go-version: 1.21.x
go-version: 1.22.x
cache: false # managed by golangci-lint

- uses: golangci/golangci-lint-action@v3
Expand Down

0 comments on commit e5745d6

Please sign in to comment.