Skip to content

Commit 937d3b9

Browse files
committed
update github workflow ci
1 parent 9872a07 commit 937d3b9

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
go: ['1.23', '1.24', '1.25']
14+
platform: [ubuntu-latest]
15+
runs-on: ${{ matrix.platform }}
1216

1317
services:
1418
mysql:
@@ -33,7 +37,7 @@ jobs:
3337
- name: Set up Go
3438
uses: actions/setup-go@v5
3539
with:
36-
go-version: '1.22.x'
40+
go-version: ${{ matrix.go }}
3741

3842
- name: Go env
3943
run: go version && go env

0 commit comments

Comments
 (0)