1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
.DEFAULT_GOAL := test
.PHONY: test
test:
go test -v -race -cover ./...
.PHONY: bench
bench:
go test -v -run - -bench . -benchmem ./...
.PHONY: lint
lint:
# Ignore grep's exit code since no match returns 1.
-golint ./... | grep --invert-match -E '^.*\.pb\.go'
@
@! (golint ./... |grep --invert-match -E '^.*\.pb\.go' | read dummy)
.PHONY: vet
vet:
go vet ./...
.PHONY: example
example:
go build -o build/dapperish-example ./examples/dapperish.go
./build/dapperish-example
|