File tree Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Original file line number Diff line number Diff line change 4
4
test :
5
5
strategy :
6
6
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 ]
8
8
os : [ubuntu-latest, macos-latest, windows-latest]
9
9
runs-on : ${{ matrix.os }}
10
10
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=.
You can’t perform that action at this time.
0 commit comments