File tree 1 file changed +69
-2
lines changed
1 file changed +69
-2
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
12
+ build :
13
+ name : Build
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+
17
+ - name : Set up Go 1.x
18
+ uses : actions/setup-go@v2
19
+ with :
20
+ go-version : ^1.13
21
+ id : go
22
+
23
+ - name : Check out code into the Go module directory
24
+ uses : actions/checkout@v2
12
25
26
+ - name : Build
27
+ run : make build
28
+
29
+ unit_tests :
30
+ name : Unit tests
31
+ runs-on : ubuntu-latest
32
+ steps :
33
+
34
+ - name : Set up Go 1.x
35
+ uses : actions/setup-go@v2
36
+ with :
37
+ go-version : ^1.13
38
+ id : go
39
+
40
+ - name : Check out code into the Go module directory
41
+ uses : actions/checkout@v2
42
+
43
+ - name : Run units
44
+ run : make test
45
+
46
+ integration_tests :
47
+ name : Integration tests
48
+ runs-on : ubuntu-latest
49
+ steps :
50
+
51
+ - name : Set up Go 1.x
52
+ uses : actions/setup-go@v2
53
+ with :
54
+ go-version : ^1.13
55
+ id : go
56
+
57
+ - name : Check out code into the Go module directory
58
+ uses : actions/checkout@v2
59
+
60
+ - name : Run integration tests
61
+ run : bash integration_tests/ci/run-all.sh
13
62
14
63
golangci :
15
64
name : Lint
19
68
- uses : actions/checkout@v2
20
69
21
70
- name : golangci-lint
22
- uses : golangci/golangci-lint-action@v2
71
+ uses : golangci/golangci-lint-action@v1
23
72
with :
24
73
version : v1.30
25
74
args : --timeout 5m0s
26
75
27
-
76
+ license :
77
+ name : License
78
+ runs-on : ubuntu-latest
79
+ steps :
80
+
81
+ - name : Set up Go 1.x
82
+ uses : actions/setup-go@v2
83
+ with :
84
+ go-version : ^1.13
85
+ id : go
86
+
87
+ - name : Get google/addlicense
88
+ run : go get -u github.com/google/addlicense
89
+
90
+ - name : Check out code into the Go module directory
91
+ uses : actions/checkout@v2
92
+
93
+ - name : Check license
94
+ run : make license-check
You can’t perform that action at this time.
0 commit comments