mirror of
https://github.com/lxzan/gws
synced 2025-12-24 12:57:59 +08:00
12 lines
172 B
Makefile
12 lines
172 B
Makefile
test:
|
|
go test ./...
|
|
|
|
bench:
|
|
go test -benchmem -run=^$$ -bench . github.com/lxzan/gws
|
|
|
|
cover:
|
|
go test -coverprofile=./bin/cover.out --cover ./...
|
|
|
|
clean:
|
|
rm -rf ./bin/*
|