juniper/juniper_rocket/Makefile.toml

19 lines
395 B
TOML
Raw Normal View History

[tasks.scoped-ci-flow]
description = "CI task will run cargo build and cargo test with verbose output"
dependencies = [
"pre-ci-flow",
"pre-build",
"build-verbose",
"post-build",
"pre-test",
"test-verbose",
"post-test",
"ci-coverage-flow",
"post-ci-flow"
]
[tasks.ci-flow]
condition = { channels = ["nightly"] }
run_task = "scoped-ci-flow"
dependencies = []