16 lines
250 B
Makefile
16 lines
250 B
Makefile
all: test
|
|
|
|
test:
|
|
@go test ./...
|
|
|
|
.PHONY: profanity
|
|
profanity:
|
|
@profanity
|
|
|
|
cover:
|
|
@go test -short -covermode=set -coverprofile=profile.cov
|
|
@go tool cover -html=profile.cov
|
|
@rm profile.cov
|
|
|
|
deps:
|
|
@go get -u github.com/blend/go-sdk/_bin/profanity
|