shock/Makefile
John Olheiser 54c787c45a
Add non-sequence options
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2020-07-21 15:22:39 -05:00

18 lines
229 B
Makefile

GO ?= go
.PHONY: fmt
fmt:
$(GO) fmt ./...
.PHONY: test
test:
$(GO) test --race ./...
.PHONY: vet
vet:
$(GO) vet ./...
.PHONY: coverage
coverage:
$(GO) test --coverprofile=coverage.out
$(GO) tool cover --html=coverage.out