Skip to content

Commit bda4d01

Browse files
oliveagleclaude
andcommitted
Add multi-version Go test matrix
Test against Go 1.15 through 1.24 to verify backward compatibility and identify version-specific issues. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 85a3389 commit bda4d01

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
go-version: ['1.15', '1.16', '1.17', '1.18', '1.19', '1.20', '1.21', '1.22', '1.23', '1.24']
15+
fail-fast: false
1216
steps:
1317
- uses: actions/checkout@v4
14-
- name: Set up Go
18+
- name: Set up Go ${{ matrix.go-version }}
1519
uses: actions/setup-go@v5
1620
with:
17-
go-version: '1.15'
21+
go-version: ${{ matrix.go-version }}
1822
- name: Test
1923
run: go test ./...

0 commit comments

Comments
 (0)