ssh-chat/.travis.yml
Steven L 2078e13819 vendor: Switch to using go dep
* Adding go dep to the project

* Adding lockfile and changing README Go version
2017-10-12 13:40:35 -04:00

23 lines
363 B
YAML

notifications:
email: false
language: go
go:
- 1.8
- 1.9
env:
- CGO_ENABLED=0
install:
- go get -t ./...
- go get -u github.com/golang/dep
- go get github.com/gordonklaus/ineffassign
script:
- diff -u <(echo -n) <(gofmt -d .)
- ineffassign .
- go vet $(go list ./... | grep -v /vendor/)
- go test -v $(go list ./... | grep -v /vendor/)