Files
script/Makefile

9 lines
135 B
Makefile
Raw Normal View History

2025-08-30 22:00:31 +03:00
.PHONY: coverage test
coverage:
go test -coverprofile=coverage.out
go tool cover -html=coverage.out
test:
go test -v -cover ./...