This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
Files
srv/Makefile
2020-07-05 22:44:05 -04:00

15 lines
242 B
Makefile

BIN ?= dist/srv
build: ## Builds the binary
go build -o $(BIN)
.PHONY: build
test: ## Run unit tests
go test -v ./...
.PHONY: test
lint: ## Run lint
go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.27.0
golangci-lint run