We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a74587d commit a7146c8Copy full SHA for a7146c8
1 file changed
.github/workflows/test.yml
@@ -14,7 +14,7 @@ jobs:
14
15
- uses: actions/setup-go@v5
16
with:
17
- go-version: "1.24"
+ go-version: "1.25"
18
19
- name: build
20
run: go build -o /tmp/odek-test github.com/BackendStack21/odek/cmd/odek && chmod +x /tmp/odek-test
@@ -35,10 +35,14 @@ jobs:
35
36
37
38
39
40
- name: golangci-lint
41
uses: golangci/golangci-lint-action@v6
42
43
version: v1.64
44
+ # Compile golangci-lint with the toolchain set up above (Go 1.25) so
45
+ # its typechecker can read the `go 1.25` module. The official
46
+ # prebuilt v1.64 binary is built with Go 1.24 and rejects it.
47
+ install-mode: goinstall
48
args: --timeout=10m
0 commit comments