Skip to content

Commit

Permalink
Updating Makefile + Add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
grubernaut committed Jun 9, 2017
1 parent aa9478d commit 0e43124
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
dist: trusty
sudo: false
language: go
go:
- 1.8.1

install:
# This script is used by the Travis build to install a cookie for
# go.googlesource.com so rate limits are higher when using `go get` to fetch
# packages that live there.
# See: https://github.com/golang/go/issues/12933
- bash scripts/gogetcookie.sh
- go get github.com/kardianos/govendor

script:
- make test
- make vendor-status
- make vet

branches:
only:
- master
matrix:
fast_finish: true
allow_failures:
- go: tip

0 comments on commit 0e43124

Please sign in to comment.