We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 073b0dc commit 6df3dd8Copy full SHA for 6df3dd8
.travis.yml
@@ -1,10 +1,7 @@
1
language: go
2
3
go:
4
- - 1.8.x
5
- - 1.9.x
6
- - 1.10.x
7
- - 1.11.x
+ - 1.12.x
8
9
matrix:
10
fast_finish: true
@@ -13,13 +10,14 @@ sudo: false
13
14
11
env:
15
12
global:
16
- - GOBIN=$HOME/bin
17
- - PATH=$HOME/bin:$PATH
+ - GOBIN=$HOME/bin
+ - PATH=$HOME/bin:$PATH
+ - GOCACHE=$HOME/.cache/go-build
+ - GO111MODULE=on
18
19
install:
20
- - go get -t -v -u ./...
+- go get -t -v -u ./...
21
22
script:
23
- - go tool vet -all .
24
- - go install ./...
25
- - go test -race -v ./...
+- go install ./...
+- go test -race -v ./...
0 commit comments