1
0
Fork 0
forked from mirror/grapevine

test all-features in CI

This should catch if jemalloc linking is broken, which wouldn't be
caught by the `lints::cargo-clippy/all` task.
This commit is contained in:
Benjamin Lee 2024-05-30 21:09:38 -07:00
parent 3a71b8e5d1
commit 624ff57414
No known key found for this signature in database
GPG key ID: FB9624E2885D55A4

View file

@ -80,7 +80,7 @@ env DIRENV_DEVSHELL=all-features \
"""
[[task]]
name = "cargo"
name = "cargo/default"
group = "tests"
script = """
cargo test \
@ -90,3 +90,18 @@ cargo test \
-- \
--color=always
"""
[[task]]
name = "cargo/all"
group = "tests"
script = """
env DIRENV_DEVSHELL=all-features \
direnv exec . \
cargo test \
--all-features \
--workspace \
--all-targets \
--color=always \
-- \
--color=always
"""