blob: e34612ce842eddba95c96376f3f0a76c249d5757 [file] [log] [blame]
sudo: false
language: go
go:
- 1.6
- 1.7
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d .)
- go tool vet .
- go test -v -race ./...