15 lines
181 B
Makefile
15 lines
181 B
Makefile
#!/usr/bin/make -f
|
|
|
|
test: fmt
|
|
go test -timeout=1s -race -cover -short -count=1 ./...
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
|
|
compile:
|
|
go build ./...
|
|
|
|
build: test compile
|
|
|
|
.PHONY: test compile build
|