We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bf3c4f commit 2437214Copy full SHA for 2437214
.github/workflows/go.yml
@@ -9,18 +9,14 @@ on:
9
jobs:
10
11
build:
12
- name: Build
13
runs-on: ubuntu-latest
14
steps:
+ - uses: actions/checkout@v2
15
16
- - name: Set up Go 1.x
+ - name: Set up Go
17
uses: actions/setup-go@v2
18
with:
19
- go-version: ^1.13
20
- id: go
21
-
22
- - name: Check out code into the Go module directory
23
- uses: actions/checkout@v2
+ go-version: 1.15
24
25
- name: Get dependencies
26
run: |
@@ -29,6 +25,8 @@ jobs:
29
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
30
dep ensure
31
27
fi
32
33
28
34
- run: go build -v .
+ run: go build -v ./...
+
+ - name: Test
+ run: go test -v ./...
0 commit comments