mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-12 20:31:17 +08:00
10 lines
158 B
Makefile
10 lines
158 B
Makefile
lint:
|
|
GOOS=darwin golangci-lint run ./...
|
|
GOOS=linux golangci-lint run ./...
|
|
|
|
test:
|
|
go test -p 1 -v ./...
|
|
|
|
benchmark:
|
|
go test -benchmem -run=^$$ -bench .
|