Skip to content

Commit aef1cce

Browse files
fix: fix test and check compatibility with go version on go.mod (#33)
`go.mod` is declaring version 1.24, but tests and checks were trying to run with go 1.23, which fails.
1 parent 977811e commit aef1cce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
test:
1313
strategy:
1414
matrix:
15-
go: ["1.23", "stable"]
15+
go: ["1.24", "stable"]
1616
name: test
1717
runs-on: ubuntu-latest
1818
steps:
@@ -31,7 +31,7 @@ jobs:
3131
golangci:
3232
strategy:
3333
matrix:
34-
go: ["1.23", "stable"]
34+
go: ["1.24", "stable"]
3535
lint: ["v2.5.0"]
3636
name: lint
3737
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)