1
0
mirror of https://github.com/fatedier/frp.git synced 2025-05-25 09:18:27 +00:00

10 lines
158 B
Makefile

.PHONY: lint
lint:
gofmt -d -s .
golint -set_exit_status ./...
go tool vet -all -shadow -shadowstrict .
.PHONY: test
test:
go test -v -cover -race ./...