From 83cad6da41f5164a86d84f32a16f2b6d4e8ee76f Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 13:54:37 +0000 Subject: [PATCH] feat(ci): add rust-cache to accelerate tests Adds `Swatinem/rust-cache@v2` to the CI workflow to cache Cargo dependencies and build artifacts. This will significantly reduce build times for subsequent runs by avoiding redundant compilation of dependencies. Co-authored-by: 404Setup <153366651+404Setup@users.noreply.github.com> --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fac629..e599074 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,8 @@ jobs: - uses: actions/checkout@v4 - name: Set up Rust uses: dtolnay/rust-toolchain@nightly + - name: Rust Cache + uses: Swatinem/rust-cache@v2 - name: Build run: cargo build --verbose - name: Run tests