go-mcstatus/Makefile
jolheiser b98e3fd177
Initial commit
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2021-04-05 21:40:59 -05:00

14 lines
123 B
Makefile

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