11 lines
136 B
Makefile
11 lines
136 B
Makefile
|
|
BIN ?= dist/srv
|
|
|
|
build: ## Builds the binary
|
|
go build -o $(BIN)
|
|
.PHONY: build
|
|
|
|
test: ## Run unit tests
|
|
go test -v ./...
|
|
.PHONY: test
|