d289643458
Signed-off-by: Alejandro Mery <amery@jpi.io>
16 lines
156 B
Makefile
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 ./...
|