Files
vpngate/Makefile
2023-02-05 09:19:48 -05:00

16 lines
271 B
Makefile

BIN ?= dist/vpngate
export CGO_ENABLED := 0
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.51.0
golangci-lint run