Files
autorestic/mise.toml
2026-04-05 23:21:42 +02:00

14 lines
332 B
TOML

[tools]
go = "latest"
restic = "latest"
[tasks.test]
run = "go test -v ./..."
[tasks.coverage]
run = "go test -coverprofile=coverage.out ./... && go tool cover -func=coverage.out && go tool cover -html=coverage.out -o coverage.html"
description = "Generate coverage report"
[tasks.clean]
run = "rm -f coverage.out coverage.html"