Skip to content

Commit 342941b

Browse files
committed
ci: add 1.22 and 1.23.0-rc2 and upgrade action version
1 parent b710ba4 commit 342941b

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,18 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.20.1, 1.21.1]
7+
go-version: [1.20.x, 1.21.x, 1.22.x, 1.23.0-rc.2]
88
os: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.os }}
1010
steps:
11-
- name: Install Go
12-
uses: actions/setup-go@v3
13-
with:
14-
go-version: ${{ matrix.go-version }}
15-
stable: false
16-
- name: Checkout code
17-
uses: actions/checkout@v3
18-
- name: Test
19-
run: |
20-
go test -v -race ./...
21-
# go vet ./...
22-
# go test -bench=.
11+
- name: Install Go
12+
uses: actions/setup-go@v5
13+
with:
14+
go-version: ${{ matrix.go-version }}
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
- name: Test
18+
run: |
19+
go test -v -race ./...
20+
# go vet ./...
21+
# go test -bench=.

0 commit comments

Comments
 (0)