mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
10 lines
158 B
Makefile
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 ./...
|