diff options
author | Niall Sheridan <nsheridan@gmail.com> | 2016-05-29 13:55:31 +0100 |
---|---|---|
committer | Niall Sheridan <nsheridan@gmail.com> | 2016-05-29 13:55:31 +0100 |
commit | a4fa16ca0ffc242bdbace084b53d2a9c859b57c2 (patch) | |
tree | eb1836ffbb5a2c666cd48a5a62d88bb2eb64f427 | |
parent | e158191e74d04c1081687348ed79fcbb61cd9ba5 (diff) | |
parent | 5ee54ca55862e8d4466494020bd3f67192f2f753 (diff) |
Merge pull request #11 from nsheridan/go_versions
Run more CI checks
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 8213639..9067b6a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,16 @@ language: go +env: + - GO15VENDOREXPERIMENT=1 + go: + - 1.5.4 - 1.6.2 - tip + +sudo: false +script: + - go build -v ./... + - go test -v ./... + - gofmt -d $(find -type f -name '*.go' -not -path './vendor/*') + - go list ./... |grep -v vendor/ |xargs go vet |