Skip to content

Commit 72b8b49

Browse files
committed
Updating Makefile + Add gitignore
1 parent 851021e commit 72b8b49

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.travis.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)