From 298ca3d645e9531e2e26bb710d401ac8c9b3f591 Mon Sep 17 00:00:00 2001 From: Collin Brittain Date: Tue, 1 Oct 2024 10:27:23 -0500 Subject: [PATCH] Fix cache paths in rust workflow --- .github/workflows/rust.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5191c0995..883f732cf 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -20,11 +20,11 @@ jobs: id: rust-cache with: path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - orchestrator/target/ + ~/.cargo/bin + ~/.cargo/registry/index + ~/.cargo/registry/cache + ~/.cargo/git/db + orchestrator/target key: ${{ runner.os }}-cargo-${{ hashFiles('orchestrator/Cargo.lock') }} - name: Run Orchestrator unit tests run: cd orchestrator && cargo test --all --verbose