reg/vendor/github.com/google/go-cmp/.travis.yml

18 lines
366 B
YAML
Raw Normal View History

sudo: false
language: go
matrix:
include:
- go: 1.6.x
script: go test -v -race ./...
- go: 1.x
script:
- diff -u <(echo -n) <(gofmt -d .)
- go install -v ./...
- go vet -v ./...
- go test -v -race ./...
- go: master
script: go test -v -race ./...
allow_failures:
- go: master
fast_finish: true