forked from quic-go/quic-go
ci: add Go 1.25rc1 to tested Go versions (#5224)
* ci: add Go 1.25rc1 to tested Go versions * fix rc name
This commit is contained in:
2
.github/workflows/cross-compile.yml
vendored
2
.github/workflows/cross-compile.yml
vendored
@@ -4,7 +4,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
go: [ "1.23.x", "1.24.x" ]
|
go: [ "1.23.x", "1.24.x", "1.25.0-rc.1" ]
|
||||||
runs-on: ${{ fromJSON(vars['CROSS_COMPILE_RUNNER_UBUNTU'] || '"ubuntu-latest"') }}
|
runs-on: ${{ fromJSON(vars['CROSS_COMPILE_RUNNER_UBUNTU'] || '"ubuntu-latest"') }}
|
||||||
name: "Cross Compilation (Go ${{matrix.go}})"
|
name: "Cross Compilation (Go ${{matrix.go}})"
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
|
|||||||
2
.github/workflows/integration.yml
vendored
2
.github/workflows/integration.yml
vendored
@@ -6,7 +6,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ "ubuntu" ]
|
os: [ "ubuntu" ]
|
||||||
go: [ "1.23.x", "1.24.x" ]
|
go: [ "1.23.x", "1.24.x", "1.25.0-rc.1" ]
|
||||||
race: [ false ]
|
race: [ false ]
|
||||||
use32bit: [ false ]
|
use32bit: [ false ]
|
||||||
include:
|
include:
|
||||||
|
|||||||
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@@ -37,7 +37,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
go: [ "1.23.x", "1.24.x" ]
|
go: [ "1.23.x", "1.24.x", "1.25.0-rc.1" ]
|
||||||
env:
|
env:
|
||||||
GOLANGCI_LINT_VERSION: v2.1.6
|
GOLANGCI_LINT_VERSION: v2.1.6
|
||||||
name: golangci-lint (Go ${{ matrix.go }})
|
name: golangci-lint (Go ${{ matrix.go }})
|
||||||
|
|||||||
2
.github/workflows/unit.yml
vendored
2
.github/workflows/unit.yml
vendored
@@ -7,7 +7,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ "ubuntu", "windows", "macos" ]
|
os: [ "ubuntu", "windows", "macos" ]
|
||||||
go: [ "1.23.x", "1.24.x" ]
|
go: [ "1.23.x", "1.24.x", "1.25.0-rc.1" ]
|
||||||
runs-on: ${{ fromJSON(vars[format('UNIT_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
|
runs-on: ${{ fromJSON(vars[format('UNIT_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
|
||||||
name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }})
|
name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }})
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
|
|||||||
Reference in New Issue
Block a user