Bauke/steam-rss
Bauke
/
steam-rss
Archived
1
Fork 0
This repository has been archived on 2025-07-21. You can view files and clone it, but cannot push or open issues or pull requests.
steam-rss/Makefile.toml

33 lines
556 B
TOML

# Do a full check of everything.
[tasks.complete-check]
dependencies = [
"format",
"spellcheck",
"check",
"clippy",
"test",
"code-coverage",
"docs",
"build",
"audit-flow",
"outdated-flow",
]
# Run cargo-tarpaulin and output the test coverage.
[tasks.code-coverage]
workspace = false
command = "cargo"
args = [
"tarpaulin",
"--exclude-files=target/*",
"--out=html",
"--output-dir=coverage",
"--skip-clean",
"--target-dir=target/tarpaulin",
]
# Do a source code spellcheck.
[tasks.spellcheck]
clear = true
command = "typos"