ci: add go 1.26

Same as commit b9e3eec in release-1.4 branch.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2026-03-16 14:13:13 -07:00
parent 9183ee6e5a
commit 692817afb2
+6 -2
View File
@@ -25,7 +25,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ubuntu-24.04, ubuntu-24.04-arm] os: [ubuntu-24.04, ubuntu-24.04-arm]
go-version: [1.23.x, 1.25.x] go-version: [1.23.x, 1.25.x, 1.26.x]
rootless: ["rootless", ""] rootless: ["rootless", ""]
race: ["-race", ""] race: ["-race", ""]
criu: ["", "criu-dev"] criu: ["", "criu-dev"]
@@ -34,11 +34,15 @@ jobs:
# (need to compile criu) and don't add much value/coverage. # (need to compile criu) and don't add much value/coverage.
- criu: criu-dev - criu: criu-dev
go-version: 1.23.x go-version: 1.23.x
- criu: criu-dev
go-version: 1.25.x
- criu: criu-dev - criu: criu-dev
rootless: rootless rootless: rootless
# Do race detection only on latest Go. # Do race detection only with latest stable Go version.
- race: -race - race: -race
go-version: 1.23.x go-version: 1.23.x
- race: -race
go-version: 1.25.x
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}