File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 66 fail-fast : false
77 matrix :
88 os : [ "ubuntu" ]
9- go : [ "1.22 .x", "1.23 .x" ]
9+ go : [ "1.23 .x", "1.24 .x" ]
1010 runs-on : ${{ fromJSON(vars[format('INTEGRATION_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
1111 name : Integration tests (${{ matrix.os}}, Go ${{ matrix.go }})
1212 steps :
Original file line number Diff line number Diff line change 1212 - uses : actions/checkout@v4
1313 - uses : actions/setup-go@v5
1414 with :
15- go-version : " 1.23 .x"
15+ go-version : " 1.24 .x"
1616 - name : Check for //go:build ignore in .go files
1717 working-directory : ${{ matrix.module }}
1818 run : |
4545 run : go vet ./...
4646 - name : Install staticcheck
4747 if : success() || failure() # run this step even if the previous one failed
48- run : go install honnef.co/go/tools/cmd/staticcheck@v0.5.0
48+ run : go install honnef.co/go/tools/cmd/staticcheck@v0.6.1
4949 - name : staticcheck
5050 if : success() || failure() # run this step even if the previous one failed
5151 working-directory : ${{ matrix.module }}
Original file line number Diff line number Diff line change 66 fail-fast : false
77 matrix :
88 os : [ "ubuntu", "windows", "macos" ]
9- go : [ "1.22 .x", "1.23 .x" ]
9+ go : [ "1.23 .x", "1.24 .x" ]
1010 runs-on : ${{ fromJSON(vars[format('UNIT_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
1111 name : Unit tests (${{ matrix.os}}, Go ${{ matrix.go }})
1212 steps :
You can’t perform that action at this time.
0 commit comments