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 8026917 commit 96d7393Copy full SHA for 96d7393
.github/workflows/go.yml
@@ -0,0 +1,26 @@
1
+name: Go
2
+on: [push]
3
+jobs:
4
+
5
+ build:
6
+ name: Build
7
+ runs-on: ubuntu-latest
8
+ steps:
9
10
+ - name: Set up Go 1.13
11
+ uses: actions/setup-go@v1
12
+ with:
13
+ go-version: 1.13
14
+ id: go
15
16
+ - name: Check out code into the Go module directory
17
+ uses: actions/checkout@v1
18
19
+ - name: Get dependencies
20
+ run: go get -v -t -d ./...
21
22
+ - name: Test
23
+ run: go test -v .
24
25
+ - name: Build
26
+ run: go build -v .
0 commit comments