Blob .travis.yml
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
language: go
env:
- DEP_VERSION="0.3.2"
before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
install:
- dep ensure
go:
- 1.7
- 1.8
- 1.9
before_script:
- go vet ./...
script:
- go test -v
|