From 22eac1a83213ed2e8641dfe4306d7c60211eba39 Mon Sep 17 00:00:00 2001 From: Tunglies Date: Wed, 11 Jun 2025 07:53:59 +0800 Subject: [PATCH] refactor: comment out Rust cache step in Clippy workflow --- .github/workflows/clippy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 3021ba0bf..f805ce1a7 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -27,12 +27,12 @@ jobs: - name: Add Rust Target run: rustup target add ${{ matrix.target }} - - name: Rust Cache - uses: Swatinem/rust-cache@v2 - with: - workspaces: src-tauri - cache-all-crates: true - cache-on-failure: true + # - name: Rust Cache + # uses: Swatinem/rust-cache@v2 + # with: + # workspaces: src-tauri + # cache-all-crates: true + # cache-on-failure: true - name: Install dependencies (ubuntu only) if: matrix.os == 'ubuntu-22.04'