From 7276ee28dc942481c0fb8de7ef3ab53406250ce3 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Wed, 20 May 2026 00:46:59 +0200 Subject: [PATCH] minor updates to rust workflow --- .gitea/workflows/lint-rust.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/lint-rust.yml b/.gitea/workflows/lint-rust.yml index aca982b..5c5087f 100644 --- a/.gitea/workflows/lint-rust.yml +++ b/.gitea/workflows/lint-rust.yml @@ -8,6 +8,9 @@ jobs: runs-on: alpine container: node:20-alpine + env: + CARGO_INCREMENTAL: 0 + steps: - name: Checkout uses: actions/checkout@v4 @@ -53,7 +56,7 @@ jobs: if [ -n "$(find . -name "Cargo.toml" -print -quit)" ]; then status=0 for manifest in $(find . -name "Cargo.toml"); do - cargo clippy --manifest-path "$manifest" -- -D warnings && \ + cargo clippy --manifest-path "$manifest" --all-targets --all-features -- -D warnings && \ echo "$manifest: Clippy passed" || \ { echo "$manifest: Clippy failed"; status=1; } done