Skip to content

Commit 6ef64d0

Browse files
Separate build and generate ci
1 parent 5e10ef5 commit 6ef64d0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
name: build
22
on: [push, pull_request]
33
jobs:
4-
tests:
4+
build:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/setup-go@v1
88
with:
99
go-version: 1.13.x
1010
- uses: actions/checkout@v1
1111
- run: make build
12+
generateandbuild:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/setup-go@v1
16+
with:
17+
go-version: 1.13.x
18+
- uses: actions/checkout@v1
1219
- run: make generate build

0 commit comments

Comments
 (0)