Alejandro Mery
3 years ago
2 changed files with 15 additions and 4 deletions
@ -0,0 +1,15 @@
|
||||
.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 ./...
|
Loading…
Reference in new issue