Merge pull request #19 from dlorenc/travis

Add .travis.yml.
pull/21/head
dlorenc 2016-04-25 10:27:28 -07:00
commit 15960dcf12
1 changed files with 10 additions and 0 deletions

10
.travis.yml Normal file
View File

@ -0,0 +1,10 @@
language: go
go:
- 1.6
# We shouldn't need to install anything because we use vendoring.
install:
- echo "Don't run anything."
# Don't test vendored code.
script: go test $(go list ./... | grep -v /vendor/)