mirror of
https://github.com/wavetermdev/ssh_config.git
synced 2026-08-05 13:43:40 -07:00
13 lines
254 B
Makefile
13 lines
254 B
Makefile
STATICCHECK := $(shell command -v staticcheck)
|
|
|
|
lint:
|
|
go vet ./...
|
|
ifndef STATICCHECK
|
|
go get -u honnef.co/go/tools/cmd/staticcheck
|
|
endif
|
|
staticcheck ./...
|
|
|
|
test: lint
|
|
@# the timeout helps guard against infinite recursion
|
|
go test -timeout=30ms ./...
|