gojang/Makefile
jolheiser 3e7e4d2d94
Initial Commit
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2020-07-01 12:01:01 -05:00

13 lines
122 B
Makefile

GO ?= go
.PHONY: test
test:
$(GO) test -race ./...
.PHONY: vet
vet:
$(GO) vet ./...
.PHONY: fmt
fmt:
$(GO) fmt ./...