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 committed May 16, 2019
1 parent b1c53ac commit c76931b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
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 c76931b

Please sign in to comment.