From 201f134b96bb6366db828b657e07646f218c2b50 Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Tue, 18 Feb 2025 17:54:00 -0500 Subject: [PATCH] ci(go): add 1.24 to test matrix Signed-off-by: Chris Gianelloni --- .github/workflows/go-test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 6a06917..7d19a5f 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -13,9 +13,8 @@ jobs: name: go-test strategy: matrix: - go-version: [1.22.x, 1.23.x] - # XXX: is it actually useful to run unit tests on macOS? - platform: [ubuntu-latest, macos-latest] + go-version: [1.22.x, 1.23.x, 1.24.x] + platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v4