Files
core/Makefile
T
2021-06-24 21:28:28 +01:00

16 lines
156 B
Makefile

.PHONY: all fmt build test
GO ?= go
all: fmt build
fmt:
$(GO) fmt ./...
$(GO) mod tidy || true
build:
$(GO) get -v ./...
test:
$(GO) test -v ./...