You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
361 B
29 lines
361 B
.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
|
|
|