From efc8fc12acdd86bf9c7a912ea1f22e2ae30099b7 Mon Sep 17 00:00:00 2001 From: Serkyo Date: Mon, 3 Aug 2026 23:49:21 +0200 Subject: [PATCH] ci(workspace): cache cargo artifacts between runs --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a42eae6..6dbd113 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,10 @@ jobs: uses: dtolnay/rust-toolchain@stable with: components: clippy, rustfmt - + + - name: Cache cargo artifacts + uses: Swatinem/rust-cache@v2 + - name: Check Rust Formatting run: cargo fmt --all -- --check