Skip to content

Commit 219e202

Browse files
committed
Revert go.yml changes
1 parent 34b7102 commit 219e202

File tree

1 file changed

+69
-2
lines changed

1 file changed

+69
-2
lines changed

.github/workflows/go.yml

+69-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,56 @@ on:
99

1010
jobs:
1111

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
1225

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
1362

1463
golangci:
1564
name: Lint
@@ -19,9 +68,27 @@ jobs:
1968
- uses: actions/checkout@v2
2069

2170
- name: golangci-lint
22-
uses: golangci/golangci-lint-action@v2
71+
uses: golangci/golangci-lint-action@v1
2372
with:
2473
version: v1.30
2574
args: --timeout 5m0s
2675

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

0 commit comments

Comments
 (0)