]> git.feebdaed.xyz Git - 0xmirror/quic-go.git/commitdiff
ci: add Go 1.26rc1 to tested Go versions (#5486)
authorMarten Seemann <martenseemann@gmail.com>
Sat, 20 Dec 2025 04:29:45 +0000 (05:29 +0100)
committerGitHub <noreply@github.com>
Sat, 20 Dec 2025 04:29:45 +0000 (05:29 +0100)
* ci: add Go 1.26rc1 to tested Go versions

* don't run golangci-lint on Go 1.26 yet

.github/workflows/cross-compile.yml
.github/workflows/integration.yml
.github/workflows/unit.yml

index 5e369b1a3c9c3dd9fe16bd24d92224c09886a7c6..db2528fcacf3ea2737919e64d01b4d52ac07f7be 100644 (file)
@@ -4,7 +4,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        go: [ "1.24.x", "1.25.x" ]
+        go: [ "1.24.x", "1.25.x", "1.26.0-rc.1" ]
     runs-on: ${{ fromJSON(vars['CROSS_COMPILE_RUNNER_UBUNTU'] || '"ubuntu-latest"') }}
     name: "Cross Compilation (Go ${{matrix.go}})"
     timeout-minutes: 30
index 6bf0e50d6a1f6b4876d9fd70e58f1b7729c0b9be..e91975648342deec4422ed73f645ec4c328504f5 100644 (file)
@@ -6,7 +6,7 @@ jobs:
       fail-fast: false
       matrix:
         os: [ "ubuntu" ]
-        go: [ "1.24.x", "1.25.x" ]
+        go: [ "1.24.x", "1.25.x", "1.26.0-rc.1" ]
         race: [ false ]
         include:
           - os: "ubuntu"
index 2a977927634db17ed5c09dcdb43c9d3de1e29eeb..679ac35b322a4c9625ff05e51bc86b10b8058912 100644 (file)
@@ -7,7 +7,7 @@ jobs:
       fail-fast: false
       matrix:
         os: [ "ubuntu", "windows", "macos" ]
-        go: [ "1.24.x", "1.25.x" ]
+        go: [ "1.24.x", "1.25.x", "1.26.0-rc.1" ]
     runs-on: ${{ fromJSON(vars[format('UNIT_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
     name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }})
     timeout-minutes: 30