From af4fd887b2d80095485aaa3ff45adc0090822f3e Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Thu, 16 Apr 2026 21:03:29 +0800 Subject: [PATCH] ci: bump GitHub Actions and add Go 1.25/1.26 to test matrix --- .github/workflows/testing.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index e8278ce..fff8709 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -39,7 +39,11 @@ jobs: testing: runs-on: ubuntu-latest - container: golang:1.23-alpine + strategy: + matrix: + go-version: ["1.25", "1.26"] + container: + image: golang:${{ matrix.go-version }}-alpine steps: - name: Checkout repository uses: actions/checkout@v6