ssh-chat/.travis.yml
Andrey Petrov 1662ecd431 Fix travisci tests
Bind to localhost rather than all hosts.
2016-08-02 16:03:19 -04:00

21 lines
292 B
YAML

notifications:
email: false
language: go
go:
- 1.6.2
- tip
env:
- CGO_ENABLED=0
install:
- go get -t ./...
- go get github.com/gordonklaus/ineffassign
script:
- ineffassign .
- go vet $(go list ./... | grep -v /vendor/)
- go test -v $(go list ./... | grep -v /vendor/)