mirror of
https://github.com/davegallant/vpngate.git
synced 2025-08-05 16:23:40 +00:00
16 lines
271 B
Makefile
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
|