From dbe8b5c92654089f4d2a39b30353360f5e85973e Mon Sep 17 00:00:00 2001 From: Ulrich Eckhardt Date: Thu, 13 Mar 2025 19:58:55 +0100 Subject: [PATCH] GitHub Actions: Extend the test matrix to Go 1.23 and 1.24 --- .github/workflows/go.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 749dcff..efb6012 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,7 +13,15 @@ jobs: strategy: matrix: - go-version: [ '1.17', '1.18', '1.19', '1.20', '1.21', '1.22' ] + go-version: + - '1.17' + - '1.18' + - '1.19' + - '1.20' + - '1.21' + - '1.22' + - '1.23' + - '1.24' steps: - uses: actions/checkout@v4