mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
5a94317628
I'd removed it from the GitHub actions checks before submitted earlier but forgot to update it here.
19 lines
502 B
Makefile
19 lines
502 B
Makefile
usage:
|
|
echo "See Makefile"
|
|
|
|
vet:
|
|
go vet ./...
|
|
|
|
updatedeps:
|
|
go run github.com/tailscale/depaware --update tailscale.com/cmd/tailscaled
|
|
go run github.com/tailscale/depaware --update tailscale.com/cmd/tailscale
|
|
|
|
depaware:
|
|
go run github.com/tailscale/depaware --check tailscale.com/cmd/tailscaled
|
|
go run github.com/tailscale/depaware --check tailscale.com/cmd/tailscale
|
|
|
|
check: staticcheck vet depaware
|
|
|
|
staticcheck:
|
|
go run honnef.co/go/tools/cmd/staticcheck -- $$(go list ./... | grep -v tempfork)
|