Skip to content

Commit

Permalink
chore(ci): add go 1.22 to version matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Earlopain committed Feb 8, 2024
1 parent 2bb24c9 commit 46764cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.22"
- name: Check diff between gofmt and code
run: diff <(gofmt -d .) <(echo -n)

test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.13", "1.14", "1.15", "1.16", "1.17", "1.18", "1.19", "1.20", "1.21"]
go-version: ["1.13", "1.14", "1.15", "1.16", "1.17", "1.18", "1.19", "1.20", "1.21", "1.22"]
steps:
- name: Code
uses: actions/checkout@v4
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.22"
- name: Go vet
run: go vet -x ./...

Expand Down

0 comments on commit 46764cc

Please sign in to comment.