syncbus/Makefile
2024-12-17 18:28:27 +01:00

26 lines
315 B
Makefile

.PHONY: .coverprofile
default: build
build:
go build ./...
check: test
test: .coverprofile
.coverprofile:
go test -coverprofile .coverprofile
cover: .coverprofile
go tool cover -func .coverprofile
showcover: .coverprofile
go tool cover -html .coverprofile
fmt:
go fmt ./...
clean:
go clean -i -cache