This repository has been archived on 2024-04-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
elektron/vendor/github.com/montanaflynn/stats/Makefile
2018-09-30 18:02:42 -07:00

29 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