1
Fork 0
romantic/Makefile.toml

33 lines
556 B
Makefile
Raw Normal View History

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