File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change 8
8
build :
9
9
name : " Run go sanity tools"
10
10
runs-on : ubuntu-latest
11
+ strategy :
12
+ fail-fast : false
13
+ matrix :
14
+ include :
15
+ - goos : linux
16
+ goarch : amd64
17
+ - goos : windows
18
+ goarch : amd64
11
19
steps :
12
20
- uses : actions/checkout@v2
13
21
- uses : actions/setup-go@v2
@@ -21,13 +29,22 @@ jobs:
21
29
run : make fmt
22
30
- name : Vet
23
31
run : make vet
32
+
33
+ test :
34
+ name : " Run tests"
35
+ runs-on : ubuntu-latest
36
+ steps :
37
+ - uses : actions/checkout@v2
38
+ - uses : actions/setup-go@v2
39
+ with :
40
+ go-version : ${{ env.GO_VERSION }}
24
41
- name : Test
25
42
run : make test
26
43
27
44
28
45
# Make sure binaries compile on multiple platforms.
29
46
crossbuild :
30
- name : Build/ Crossbuild Binaries
47
+ name : " Build / Crossbuild Binaries"
31
48
runs-on : ubuntu-20.04
32
49
strategy :
33
50
fail-fast : false
37
54
goarch : amd64
38
55
- goos : windows
39
56
goarch : amd64
40
-
41
57
steps :
42
58
- uses : actions/checkout@v2
43
59
- uses : actions/setup-go@v2
You can’t perform that action at this time.
0 commit comments