Files
fission-src/.travis.yml
T

22 lines
379 B
YAML

sudo: required
dist: trusty
language: go
go:
- 1.7.1
- 1.7.2
- 1.7.3
- 1.7.4
- tip
install:
- go get github.com/Masterminds/glide
script:
- cd ${TRAVIS_BUILD_DIR}
- glide install
- ./fission-bundle/build.sh
- hack/verify-gofmt.sh
- go test -v -i $(go list ./... | grep -v '/vendor/')
- go test -v $(go list ./... | grep -v '/vendor/')