Files
vpngate/Makefile
Dave Gallant da5c1ac3cd Bump dependencies (#82)
* Bump dependencies

* Bump golangci lint

* Pin go version

* Fix make test
2022-10-03 20:02:47 -07:00

14 lines
246 B
Makefile

BIN ?= dist/vpngate
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