Files
script/Makefile
2025-08-30 22:00:31 +03:00

9 lines
135 B
Makefile

.PHONY: coverage test
coverage:
go test -coverprofile=coverage.out
go tool cover -html=coverage.out
test:
go test -v -cover ./...