Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
ci: only deny warnings, not all clippy lints
Merged liw opened 1 year ago

Change configuration of native CI to only deny warnings from the compiler, but no all clippy lints.

Previously we ran “cargo clippy –all-targets –workspace – –deny clippy::all”, which overrides the allows for specific clippy lints in the source code. We don’t want that.

Signed-off-by: Lars Wirzenius liw@liw.fi

1 file changed +2 -2 87cb7bf5 7d28d1e6
modified .radicle/native.yaml
@@ -3,7 +3,7 @@ shell: |
  rustc --version

  cargo fmt --check
-
  cargo clippy --all-targets --workspace -- --deny clippy::all
+
  cargo clippy --all-targets --workspace -- --deny warnings
  cargo build --all-targets --workspace
-
  cargo doc --workspace
+
  cargo doc --workspace --no-deps
  cargo test --workspace --no-fail-fast