language: go sudo: false os: - linux go: - 1.10.x - 1.11.x - 1.12.x - tip install: - echo "This is an override of the default install deps step in travis." script: - go get -t -u -v ./... - go build -v . - go vet ./... - go test ./...