Files
mux/.travis.yml
Dmitri Shuralyov 9a9f155278 Travis: Perform gofmt, go vet checks; use race detector during tests.
This change augments the Travis CI build to perform:

- Check that all files follow gofmt style, including -s (simplify) option.
- Check that go vet does not report any problems.
- Use race detector when running tests, to ensure there are no data races found.
2015-11-08 17:29:33 -08:00

15 lines
224 B
YAML

language: go
sudo: false
go:
- 1.3
- 1.4
- 1.5
- tip
install:
- go get golang.org/x/tools/cmd/vet
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
- go test -v -race ./...