Skip to content

Commit

Permalink
.travis.yml: use go vet instead of go tool vet
Browse files Browse the repository at this point in the history
As of Go 1.12, go tool vet is no longer supported¹.
Start using the go vet command instead.

¹ https://golang.org/doc/go1.12#vet
  • Loading branch information
dmitshur authored Apr 3, 2019
1 parent ddfd86e commit 99a3524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ install:
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
- go vet ./...
- go test -v -race ./...

0 comments on commit 99a3524

Please sign in to comment.