From 9257e78e90d521910642bb225258bb8bb0d09748 Mon Sep 17 00:00:00 2001 From: Adam Reichold Date: Wed, 10 May 2023 07:59:01 +0200 Subject: [PATCH] Fix Clippy CI job cache to really include the platform. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f0d0276..122d2007 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -103,7 +103,7 @@ jobs: architecture: ${{ matrix.platform.python-architecture }} - uses: Swatinem/rust-cache@v2 with: - key: clippy-${{ matrix.platform.rust-target }}-${{ matrix.os }}-${{ matrix.rust }} + key: clippy-${{ matrix.platform.rust-target }}-${{ matrix.platform.os }}-${{ matrix.rust }} continue-on-error: true - run: python -m pip install --upgrade pip && pip install nox - if: matrix.msrv == 'MSRV'