Makefile 361 B

1234567891011121314151617181920212223242526272829
  1. .PHONY: all
  2. doc:
  3. godoc `pwd`
  4. webdoc:
  5. godoc -http=:44444
  6. format:
  7. go fmt
  8. test:
  9. go test -race
  10. check: format test
  11. benchmark:
  12. go test -bench=. -benchmem
  13. coverage:
  14. go test -coverprofile=coverage.out
  15. go tool cover -html="coverage.out"
  16. lint: format
  17. go get github.com/alecthomas/gometalinter
  18. gometalinter --install
  19. gometalinter
  20. default: lint test