Add .travis.yml.

pull/19/head
Dan Lorenc 2016-04-25 10:14:31 -07:00
parent d74ce773cf
commit 422c107b71
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/)