Files
2025-09-08 19:09:04 +01:00

8 lines
182 B
Makefile

test:
go test -coverprofile=coverage.out ./...
go tool cover -html=coverage.out -o coverage.html
rm coverage.out
bench:
go test -bench=. -cpuprofile=cpu.out -memprofile=mem.out