File tree Expand file tree Collapse file tree 1 file changed +8
-14
lines changed
Expand file tree Collapse file tree 1 file changed +8
-14
lines changed Original file line number Diff line number Diff line change 11name : test
2-
32on : [push, pull_request]
4-
53jobs :
6- test-go-1-16 :
7- runs-on : ubuntu-latest
8- steps :
9- - uses : actions/setup-go@v3
10- with :
11- go-version : ' 1.16'
12- - uses : actions/checkout@v3
13- - run : make ginkgo
14- test-go-1-17 :
4+ test-and-lint :
5+ name : Test and Lint Go 1.17
156 runs-on : ubuntu-latest
167 steps :
178 - uses : actions/setup-go@v3
189 with :
1910 go-version : ' 1.17'
2011 - uses : actions/checkout@v3
2112 - run : make test
22- test-go-1-18 :
13+ test :
2314 runs-on : ubuntu-latest
15+ strategy :
16+ matrix :
17+ go : [ '1.16', '1.18', '1.19' ]
18+ name : Test Go ${{ matrix.go }}
2419 steps :
2520 - uses : actions/setup-go@v3
2621 with :
27- go-version : ' 1.18 '
22+ go-version : ${{ matrix.go }}
2823 - uses : actions/checkout@v3
2924 - run : make ginkgo
30-
You can’t perform that action at this time.
0 commit comments