From c8bf3c80f7ba2e22fb8b1ed6991e6b4af70e9f01 Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Fri, 13 Feb 2026 22:19:30 +0200 Subject: [PATCH] chore(ci): add Go 1.26 to test matrix Signed-off-by: Ville Vesilehto --- .github/workflows/build.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ebebf13e..6ea93e07 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-versions: [ '1.18', '1.22', '1.24', '1.25' ] + go-versions: [ '1.18', '1.22', '1.24', '1.25', '1.26' ] go-arch: [ '386' ] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ae2280d3..90783a6c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-versions: [ '1.18', '1.19', '1.20', '1.21', '1.22', '1.23', '1.24', '1.25' ] + go-versions: [ '1.18', '1.19', '1.20', '1.21', '1.22', '1.23', '1.24', '1.25', '1.26' ] steps: - uses: actions/checkout@v3 - name: Setup Go ${{ matrix.go-version }}