From f03c734e85c51e1b5baf51dfe6006eacef261527 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 4 Jan 2024 10:28:53 +0200 Subject: [PATCH] build: add config for Radicle native CI engine Signed-off-by: Lars Wirzenius --- .radicle/native.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .radicle/native.yaml diff --git a/.radicle/native.yaml b/.radicle/native.yaml new file mode 100644 index 00000000..5c79e395 --- /dev/null +++ b/.radicle/native.yaml @@ -0,0 +1,9 @@ +shell: | + cargo --version + rustc --version + + cargo fmt --check + cargo clippy --all-targets --workspace -- --deny clippy::all + cargo build --all-targets --workspace + cargo doc --workspace + cargo test --workspace --no-fail-fast