ssh-chat/.travis.yml
Andrey Petrov 9697c7d37f
Switch to go modules, update travisci for Go 1.11 (#279)
* Switch to go modules, update travisci for go 1.11

* Add go.{mod,sum}

* travisci: Merge envs, oops

Closes #271
2018-09-06 14:03:53 -05:00

20 lines
269 B
YAML

notifications:
email: false
language: go
go:
- 1.11
env:
- CGO_ENABLED=0 GO111MODULE=on
install:
- go get -t ./...
- go get github.com/gordonklaus/ineffassign
script:
- diff -u <(echo -n) <(gofmt -d .)
- ineffassign .
- go test -vet "all" -v ./...