crawlkit/Makefile
2026-05-01 08:43:29 -07:00

15 lines
152 B
Makefile

.PHONY: test vet tidy check
test:
go test ./...
vet:
go vet ./...
tidy:
go mod tidy
check: tidy vet test
git diff --exit-code -- go.mod go.sum