From 344b15b2d6c0415161d330a2f3bf5814cfc28a37 Mon Sep 17 00:00:00 2001 From: Dan Kortschak Date: Fri, 11 Oct 2024 05:11:54 +1030 Subject: [PATCH] ci: add go1.22 testing --- .github/workflows/go.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index be9b261..5adb9cd 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -10,7 +10,17 @@ jobs: test: strategy: matrix: - go-version: [1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x] + go-version: + - 1.14.x + - 1.15.x + - 1.16.x + - 1.17.x + - 1.18.x + - 1.19.x + - 1.20.x + - 1.21.x + - 1.22.x + - 1.23.x os: [ubuntu-latest] runs-on: ${{ matrix.os }}