update .travis.yml with new golint path

This commit is contained in:
Liam Stanley 2018-10-24 15:26:35 -07:00
parent 3ed14e1a7d
commit 5a5805298c

@ -1,14 +1,13 @@
language: go language: go
go: go:
- 1.8 - 1.11.x
- 1.9
- tip - tip
before_install: before_install:
- go get -v github.com/golang/lint/golint - go get -v golang.org/x/lint/golint
script: script:
- $HOME/gopath/bin/golint -min_confidence 0.9 -set_exit_status - $HOME/gopath/bin/golint -min_confidence 0.9 -set_exit_status
- GORACE="exitcode=1 halt_on_error=1" go test -v -coverprofile=coverage.txt -race -timeout 3m -count 3 -cpu 1,4 - GORACE="exitcode=1 halt_on_error=1" go test -v -coverprofile=coverage.txt -race -timeout 3m -count 3 -cpu 1,4
- go tool vet -v -all . - go vet -v .
after_success: after_success:
- bash <(curl -s https://codecov.io/bash) - bash <(curl -s https://codecov.io/bash)
branches: branches: