File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 44 test :
55 strategy :
66 matrix :
7- go-version : [1.23 .x, 1.24 .x]
7+ go-version : [1.24 .x, 1.25 .x]
88 os : [ubuntu-latest, macos-latest, windows-latest]
99 runs-on : ${{ matrix.os }}
1010 steps :
1717
1818 # Static checks from this point forward. Only run on one Go version and on
1919 # Linux, since it's the fastest platform, and the tools behave the same.
20- - if : matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24 .x'
20+ - if : matrix.os == 'ubuntu-latest' && matrix.go-version == '1.25 .x'
2121 run : diff <(echo -n) <(gofmt -s -d .)
22- - if : matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24 .x'
22+ - if : matrix.os == 'ubuntu-latest' && matrix.go-version == '1.25 .x'
2323 run : go vet ./...
Original file line number Diff line number Diff line change 11# benchinit
22
33Benchmark the initialization cost of your packages or programs.
4- Requires Go 1.23 or later.
4+ Requires Go 1.24 or later.
55
66 go install mvdan.cc/benchinit@latest
77
Original file line number Diff line number Diff line change 11module mvdan.cc/benchinit
22
3- go 1.23
3+ go 1.24.0
44
55require github.com/rogpeppe/go-internal v1.14.1
66
You can’t perform that action at this time.
0 commit comments