1
0
mirror of https://github.com/Luzifer/webcheck.git synced 2024-09-19 23:52:58 +00:00
webcheck/vendor/github.com/montanaflynn/stats/Makefile
Knut Ahlers 2fbabd6bd4
Vendor dependencies
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-07-23 14:54:12 +02:00

30 lines
361 B
Makefile

.PHONY: all
doc:
godoc `pwd`
webdoc:
godoc -http=:44444
format:
go fmt
test:
go test -race
check: format test
benchmark:
go test -bench=. -benchmem
coverage:
go test -coverprofile=coverage.out
go tool cover -html="coverage.out"
lint: format
go get github.com/alecthomas/gometalinter
gometalinter --install
gometalinter
default: lint test