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 851021e commit 72b8b49Copy full SHA for 72b8b49
.travis.yml
@@ -0,0 +1,26 @@
1
+dist: trusty
2
+sudo: false
3
+language: go
4
+go:
5
+- 1.8.1
6
+
7
+install:
8
+# This script is used by the Travis build to install a cookie for
9
+# go.googlesource.com so rate limits are higher when using `go get` to fetch
10
+# packages that live there.
11
+# See: https://github.com/golang/go/issues/12933
12
+- bash scripts/gogetcookie.sh
13
+- go get github.com/kardianos/govendor
14
15
+script:
16
+- make test
17
+- make vendor-status
18
+- make vet
19
20
+branches:
21
+ only:
22
+ - master
23
+matrix:
24
+ fast_finish: true
25
+ allow_failures:
26
+ - go: tip
0 commit comments