ci(engage): add cargo test default, use all-features devshell for cargo test --all-features

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-06-01 00:17:03 -04:00
parent 3c4e325036
commit b63937af0b

View file

@ -134,13 +134,27 @@ group = "lints"
script = "lychee --verbose --offline docs *.md"
[[task]]
name = "cargo"
name = "cargo/all"
group = "tests"
script = """
env DIRENV_DEVSHELL=all-features \
direnv exec . \
cargo test \
--workspace \
--all-targets \
--all-features \
--color=always \
-- \
--color=always
"""
[[task]]
name = "cargo/default"
group = "tests"
script = """
cargo test \
--workspace \
--all-targets \
--all-features \
--color=always \
-- \
--color=always