From e202d40d256f73816158066a01243c2c35868fc3 Mon Sep 17 00:00:00 2001 From: Chris Harrison <629204+ravngr@users.noreply.github.com> Date: Tue, 16 May 2023 09:40:03 +1000 Subject: [PATCH] Tweaked CI workflow --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 19fa36c..974c8f4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -38,9 +38,9 @@ jobs: uses: actions/cache@v3 with: path: ~/.cache/pre-commit - key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }} + key: pre-commit_${{ env.pythonLocation }}_${{ hashFiles('.pre-commit-config.yaml') }} - name: "Run pre-commit tests" shell: bash run: | - pre-commit run --show-diff-on-failure --color=always + pre-commit run -a --color=always