testify/.travis.yml
Boyan bda8848f6f Use latest Go master instead of dev
* Changed the latest Go version of the Travis build to be master instead of dev
2020-01-29 09:02:27 +11:00

28 lines
500 B
YAML

language: go
sudo: false
matrix:
include:
- go: "1.8.x"
- go: "1.9.x"
- go: "1.10.x"
- go: "1.11.x"
env: GO111MODULE=off
- go: "1.11.x"
env: GO111MODULE=on
- go: "1.12.x"
env: GO111MODULE=off
- go: "1.12.x"
env: GO111MODULE=on
- go: "1.13.x"
env: GO111MODULE=off
- go: "1.13.x"
env: GO111MODULE=on
- go: master
script:
- ./.travis.gogenerate.sh
- ./.travis.gofmt.sh
- ./.travis.govet.sh
- go test -v -race ./...