From cdc86ad21d902636883d3752e5738e80d0cf8fc6 Mon Sep 17 00:00:00 2001 From: Alex Huth Date: Tue, 24 Mar 2026 11:30:46 -0700 Subject: [PATCH] ci: enable cargo caching for clippy workflow The clippy workflow explicitly disabled caching, causing full recompilation on every PR. Enable the built-in cargo/target caching from actions-rust-lang/setup-rust-toolchain. --- .github/workflows/clippy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index a58fb893ca9..00dab528348 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -37,7 +37,7 @@ jobs: with: toolchain: ${{ env.RUST_TOOLCHAIN }} components: clippy - cache: false + cache: true - name: Clippy id: clippy