blob: 0346409b66d0c21dd0d379ea44c5fadb8224359f [file] [edit]
#!/usr/bin/make -f
test: fmt
go test -timeout=1s -race -cover -short ./...
fmt:
go mod tidy && go fmt ./...
compile:
go build ./...
build: test compile
.PHONY: test compile build