mirror of
https://github.com/davegallant/vpngate.git
synced 2025-08-05 08:13:41 +00:00
15 lines
284 B
Makefile
15 lines
284 B
Makefile
BIN ?= dist/vpngate
|
|
|
|
build: ## Builds the binary
|
|
go build -o $(BIN)
|
|
.PHONY: build
|
|
|
|
test: ## Run unit tests
|
|
go get github.com/rakyll/gotest@v0.0.5
|
|
gotest -v ./...
|
|
.PHONY: test
|
|
|
|
lint: ## Run lint
|
|
go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.27.0
|
|
golangci-lint run
|