File tree Expand file tree Collapse file tree 2 files changed +43
-36
lines changed Expand file tree Collapse file tree 2 files changed +43
-36
lines changed Original file line number Diff line number Diff line change
1
+ name : Tests
2
+
3
+ on :
4
+ pull_request :
5
+
6
+ jobs :
7
+ os-tests :
8
+ strategy :
9
+ matrix :
10
+ go-version : [1.14.x, 1.15.x]
11
+ platform : [ubuntu-latest, macos-latest, windows-latest]
12
+ runs-on : ${{ matrix.platform }}
13
+ steps :
14
+ - name : Install Go
15
+ uses : actions/setup-go@v1
16
+ with :
17
+ go-version : ${{ matrix.go-version }}
18
+ - name : Checkout
19
+ uses : actions/checkout@v2
20
+ with :
21
+ fetch-depth : 1
22
+ - name : Run unit tests
23
+ run : make test
24
+
25
+ build-tests :
26
+ strategy :
27
+ matrix :
28
+ go-version : [1.14.x, 1.15.x]
29
+ platform : [ubuntu-latest]
30
+ runs-on : ${{ matrix.platform }}
31
+ steps :
32
+ - name : Install Go
33
+ uses : actions/setup-go@v1
34
+ with :
35
+ go-version : ${{ matrix.go-version }}
36
+ - name : Checkout
37
+ uses : actions/checkout@v2
38
+ with :
39
+ fetch-depth : 1
40
+ - name : Build binaries
41
+ run : make build
42
+ - name : Check with go vet
43
+ run : make vet
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments