9 lines
No EOL
149 B
Makefile
9 lines
No EOL
149 B
Makefile
all: test
|
|
|
|
test:
|
|
@go test ./...
|
|
|
|
cover:
|
|
@go test -short -covermode=set -coverprofile=profile.cov
|
|
@go tool cover -html=profile.cov
|
|
@rm profile.cov
|