We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b09ca9e commit c686ba4Copy full SHA for c686ba4
.github/workflows/build.yaml
@@ -0,0 +1,27 @@
1
+name: Ubuntu Build Test
2
+
3
+on:
4
+ pull_request: {}
5
+ push: {}
6
7
+jobs:
8
9
+ build:
10
+ name: Build
11
+ runs-on: ubuntu-latest
12
+ steps:
13
14
+ - name: Set up Go 1.x
15
+ uses: actions/setup-go@v2
16
+ with:
17
+ go-version: ^1.16
18
+ id: go
19
20
+ - name: Check out code into the Go module directory
21
+ uses: actions/checkout@v2
22
23
+ - name: Build Test
24
+ run: |
25
+ make -C lib/go protoc
26
+ make -C lib/go protoc-gen-go
27
+ make build_go
0 commit comments