Skip to content

Commit 1c1bb5b

Browse files
committed
Update CI config
1 parent 9cb1a89 commit 1c1bb5b

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ jobs:
1414
test:
1515
strategy:
1616
matrix:
17-
go-version: [1.21.x, 1.22.x, 1.23.x]
18-
db-version: [6.x, 7.x]
17+
go-version: [1.24.x, 1.25.x]
18+
db-version: ["6.0", "6.2", "7.0", "7.2"]
1919
distribution: [redis]
2020
runs-on: ubuntu-latest
2121
steps:
22+
- uses: actions/checkout@v4
2223
- name: Start Database
2324
uses: shogo82148/actions-setup-redis@v1
2425
with:
@@ -33,12 +34,12 @@ jobs:
3334
uses: actions/checkout@v4
3435

3536
- name: Install Go
36-
uses: actions/setup-go@v5
37+
uses: actions/setup-go@v6
3738
with:
3839
go-version: ${{ matrix.go-version }}
39-
go-version-file: go.mod
40-
cache-dependency-path: go.sum
40+
go-version-file: ./v2/go.mod
41+
cache-dependency-path: ./v2/go.sum
4142

4243
- name: Test
43-
working-directory: .
44+
working-directory: ./v2
4445
run: go run gotest.tools/gotestsum@latest -f testname -- ./... -race -count=1 -shuffle=on

0 commit comments

Comments
 (0)