Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
- '1.22'
- '1.23'
- '1.24'
- '>=1.25.0-rc.1'
- '1.25'
- '>=1.26.0-rc.1'

runs-on: ${{ matrix.os }}

Expand All @@ -38,7 +39,7 @@ jobs:
matrix:
go:
- '1.24'
- '>=1.25.0-rc.1'
- '1.25'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -56,7 +57,8 @@ jobs:
matrix:
go:
- '1.24'
- '>=1.25.0-rc.1'
- '1.25'
- '>=1.26.0-rc.1'
steps:
- uses: actions/checkout@v2

Expand All @@ -74,7 +76,8 @@ jobs:
matrix:
go:
- '1.24'
- '>=1.25.0-rc.1'
- '1.25'
- '>=1.26.0-rc.1'
steps:
- uses: actions/checkout@v2

Expand All @@ -91,7 +94,8 @@ jobs:
matrix:
go:
- '1.24.4'
- '1.25rc1'
- '1.25.5'
- '1.26rc1'
steps:
- uses: actions/checkout@v2

Expand Down
6 changes: 3 additions & 3 deletions runtime_go1.20.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
// bumping of the go versions supported by adjusting the build tags below. The
// way go version tags work the tag for goX.Y will be declared for every
// subsequent release. So go1.20 will be defined for go1.21, go1.22, etc. The
// build tag "go1.20 && !go1.26" defines the range [go1.20, go1.26) (inclusive
// on go1.20, exclusive on go1.26).
// build tag "go1.20 && !go1.27" defines the range [go1.20, go1.27) (inclusive
// on go1.20, exclusive on go1.27).

// The untested_go_version flag enables building on any go version, intended
// to ease testing against Go at tip.
//go:build (go1.20 && !go1.26) || untested_go_version
//go:build (go1.20 && !go1.27) || untested_go_version

package swiss

Expand Down