From 86e49bb0ea1b69b7ec3ce1d92608c177a4348ec5 Mon Sep 17 00:00:00 2001 From: 0o-de-lally <1364012+0o-de-lally@users.noreply.github.com> Date: Wed, 14 Aug 2024 21:40:14 -0400 Subject: [PATCH] test caching builds before clippy --- .github/workflows/cleanliness.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/cleanliness.yaml b/.github/workflows/cleanliness.yaml index 13e255150..9b59f755e 100644 --- a/.github/workflows/cleanliness.yaml +++ b/.github/workflows/cleanliness.yaml @@ -36,6 +36,10 @@ jobs: command: fmt args: --all -- --check + # clippy can share cache if build for tests is done prior + - name: build for cache + run: cargo build --tests --workspace + - name: clippy uses: actions-rs/cargo@v1 with: