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:
parent
3a71b8e5d1
commit
624ff57414
1 changed files with 16 additions and 1 deletions
17
engage.toml
17
engage.toml
|
@ -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
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue