mirror of
https://github.com/stretchr/testify.git
synced 2025-05-01 04:59:43 +00:00
Until we drop support of Go < 1.9, skip vendored packages manually. Once Go 1.11 is released, we would be able to just use ./...
16 lines
201 B
YAML
16 lines
201 B
YAML
language: go
|
|
|
|
sudo: false
|
|
|
|
go:
|
|
- 1.7
|
|
- 1.8
|
|
- 1.9
|
|
- tip
|
|
|
|
script:
|
|
- ./.travis.gogenerate.sh
|
|
- ./.travis.gofmt.sh
|
|
- ./.travis.govet.sh
|
|
- go test -v -race $(go list ./... | grep -v vendor)
|