mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2026-04-06 13:49:18 +00:00
14 lines
332 B
TOML
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"
|