File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
- # Adapted from https://github.com/mvdan/github-actions-golang/blob/7aaba8c78195e7b688422b1a3e0733e93d525178 /README.md
1
+ # Adapted from https://github.com/mvdan/github-actions-golang/blob/b7c76395d24d6483ab668e5bf1e6d0cb2794c831 /README.md
2
2
3
3
on : [ 'push', 'pull_request' ]
4
4
name : BuildAndTest
5
5
jobs :
6
6
test :
7
7
strategy :
8
8
matrix :
9
- go-version : [ '1.17.x', '1.16.x' ]
9
+ go-version :
10
+ - ' 1.16.x'
11
+ - ' 1.17.x'
12
+ - ' 1.18.x'
13
+ - ' 1.19.x'
14
+ - ' 1.20.x'
15
+ - ' 1.21.x'
10
16
os : [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
11
17
runs-on : ${{ matrix.os }}
12
18
steps :
13
19
- name : Install Go
14
- uses : actions/setup-go@v2
20
+ uses : actions/setup-go@v4
15
21
with :
16
22
go-version : ${{ matrix.go-version }}
17
23
- name : Checkout code
18
- uses : actions/checkout@v2
24
+ uses : actions/checkout@v3
19
25
- name : Build
20
26
run : make build
21
27
- name : Test
You can’t perform that action at this time.
0 commit comments