mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 11:05:45 +00:00
5e0375808b
And add vet to the "make check" target, like the CI has.
11 lines
169 B
Makefile
11 lines
169 B
Makefile
usage:
|
|
echo "See Makefile"
|
|
|
|
vet:
|
|
go vet ./...
|
|
|
|
check: staticcheck vet
|
|
|
|
staticcheck:
|
|
go run honnef.co/go/tools/cmd/staticcheck -- $$(go list ./... | grep -v tempfork)
|