From deb3a3173d08f0d08f1e1363ecd9d9b2a2f90955 Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Tue, 18 Feb 2025 17:54:05 -0500 Subject: [PATCH] ci(go): add 1.24 to test matrix Signed-off-by: Chris Gianelloni --- .github/workflows/go-test.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/go-test.yml diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml new file mode 100644 index 00000000..7d19a5f0 --- /dev/null +++ b/.github/workflows/go-test.yml @@ -0,0 +1,25 @@ +name: go-test + +on: + push: + tags: + - v* + branches: + - main + pull_request: + +jobs: + go-test: + name: go-test + strategy: + matrix: + go-version: [1.22.x, 1.23.x, 1.24.x] + platform: [ubuntu-latest] + runs-on: ${{ matrix.platform }} + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: ${{ matrix.go-version }} + - name: go-test + run: go test ./...