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