mirror of
https://github.com/davegallant/vpngate.git
synced 2025-08-05 08:13:41 +00:00
* Add survey library to select server * Add speedtest * Add --random flag to connect * Add list command * Cache server list * Tail the openvpn logs so that it appears in vpngate logs * Add goreleaser action * Add golangci-lint action
14 lines
245 B
Makefile
14 lines
245 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
|