Files
gws/Makefile
2024-09-21 21:05:54 +08:00

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/*