File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed
Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 1919 - ' 1.22'
2020 - ' 1.23'
2121 - ' 1.24'
22- - ' >=1.25.0-rc.1'
22+ - ' 1.25'
23+ - ' >=1.26.0-rc.1'
2324
2425 runs-on : ${{ matrix.os }}
2526
3839 matrix :
3940 go :
4041 - ' 1.24'
41- - ' >= 1.25.0-rc.1 '
42+ - ' 1.25'
4243 runs-on : ubuntu-latest
4344 steps :
4445 - uses : actions/checkout@v2
5657 matrix :
5758 go :
5859 - ' 1.24'
59- - ' >=1.25.0-rc.1'
60+ - ' 1.25'
61+ - ' >=1.26.0-rc.1'
6062 steps :
6163 - uses : actions/checkout@v2
6264
7476 matrix :
7577 go :
7678 - ' 1.24'
77- - ' >=1.25.0-rc.1'
79+ - ' 1.25'
80+ - ' >=1.26.0-rc.1'
7881 steps :
7982 - uses : actions/checkout@v2
8083
9194 matrix :
9295 go :
9396 - ' 1.24.4'
94- - ' 1.25rc1'
97+ - ' 1.25.5'
98+ - ' 1.26rc1'
9599 steps :
96100 - uses : actions/checkout@v2
97101
Original file line number Diff line number Diff line change 1717// bumping of the go versions supported by adjusting the build tags below. The
1818// way go version tags work the tag for goX.Y will be declared for every
1919// subsequent release. So go1.20 will be defined for go1.21, go1.22, etc. The
20- // build tag "go1.20 && !go1.26 " defines the range [go1.20, go1.26 ) (inclusive
21- // on go1.20, exclusive on go1.26 ).
20+ // build tag "go1.20 && !go1.27 " defines the range [go1.20, go1.27 ) (inclusive
21+ // on go1.20, exclusive on go1.27 ).
2222
2323// The untested_go_version flag enables building on any go version, intended
2424// to ease testing against Go at tip.
25- //go:build (go1.20 && !go1.26 ) || untested_go_version
25+ //go:build (go1.20 && !go1.27 ) || untested_go_version
2626
2727package swiss
2828
You can’t perform that action at this time.
0 commit comments