diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..2fe827e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: go + +# The feature/go15 branch uses new features in go15. Only testing this branch +# against tip which has the features. +go: + - 1.5 + - 1.6 + - tip + +# Setting sudo access to false will let Travis CI use containers rather than +# VMs to run the tests. For more details see: +# - http://docs.travis-ci.com/user/workers/container-based-infrastructure/ +# - http://docs.travis-ci.com/user/workers/standard-infrastructure/ +sudo: false