We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51734c2 commit 5705d27Copy full SHA for 5705d27
1 file changed
.github/workflows/go.yml
@@ -0,0 +1,31 @@
1
+name: Go
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
16
+ - name: Set up Go
17
+ uses: actions/setup-go@v2
18
+ with:
19
+ go-version: 1.15
20
21
+ - name: All
22
+ run: make all
23
24
+ - name: Analyze
25
+ run: make analyze
26
27
+ - name: Build
28
+ run: make build
29
30
+ - name: Test
31
+ run: make test
0 commit comments