From 5281b1ebef1cc2d294868cd89587ac8d2913fd26 Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Tue, 24 Oct 2023 11:32:57 +0100 Subject: [PATCH] cache all deps --- .github/workflows/run-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index e4dd14aa..522f3f65 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -26,8 +26,8 @@ jobs: uses: actions/cache/restore@v3 with: path: | - target/*/deps/*rlst* - target/*/deps/*lapack* + target/debug/deps/ + target/release/deps/ key: rlst-${{ steps.rlst-commit.output.commit }}-${{ matrix.mpi }} - name: Set up Rust @@ -78,8 +78,8 @@ jobs: uses: actions/cache/save@v3 with: path: | - target/*/deps/*rlst* - target/*/deps/*lapack* + target/debug/deps/ + target/release/deps/ key: ${{ steps.cache.outputs.cache-primary-key }} run-tests-python: