mirror of
https://github.com/fatedier/frp.git
synced 2024-12-12 17:50:51 +01: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 ./...
|