diff --git a/Makefile b/Makefile index 0b337de..bf1f3cf 100644 --- a/Makefile +++ b/Makefile @@ -1,21 +1,25 @@ -.PHONY: build test lint clean coverage install +.PHONY: build build-aliases test lint clean coverage install check deps -BINARY=abacate + BINARY=abacatepay + ALIAS_BINARY=abkt -build: - go build -o $(BINARY) . + build: + go build -o $(BINARY) . -test: - go test -v -race ./... + build-aliases: build + go build -o $(ALIAS_BINARY) . -lint: - golangci-lint run + test: + go test -v -race ./... + + lint: + golangci-lint run install: - go install . + go install . check: test lint deps: go mod download - go mod tidy + go mod tidy