1
0
mirror of https://github.com/fatedier/frp.git synced 2025-07-04 06:39:29 +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 ./...