We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3a2d95 commit 7f9006fCopy full SHA for 7f9006f
.github/workflows/go.yml
@@ -0,0 +1,28 @@
1
+name: Go
2
+on: [push]
3
+jobs:
4
+
5
+ build:
6
+ name: Test
7
+ runs-on: ubuntu-latest
8
+ steps:
9
10
+ - name: Set up Go 1.12
11
+ uses: actions/setup-go@v1
12
+ with:
13
+ go-version: 1.12
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: |
21
+ go get -v -t -d ./...
22
+ if [ -f Gopkg.toml ]; then
23
+ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
24
+ dep ensure
25
+ fi
26
27
+ - name: Test
28
+ run: go test ./...
0 commit comments