mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-12-24 11:51:13 +08:00
12 lines
169 B
Makefile
12 lines
169 B
Makefile
.PHONY: test lint build
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
lint:
|
|
golangci-lint run --fix --config .golangci.yaml
|
|
|
|
build:
|
|
mkdir -p bin
|
|
go build -o ./bin/sql-migrate ./sql-migrate
|