From a8bcebac37b1fbf568a2fbca61597f4e99975af3 Mon Sep 17 00:00:00 2001 From: Lars Holmberg Date: Thu, 19 Sep 2024 09:28:37 +0200 Subject: [PATCH] gh: always build even if we think there's a cache hit --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0edfa46605..6cf3f763e7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -56,7 +56,7 @@ jobs: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} - name: Install dependencies - if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + # if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root --no-plugins # Install node and yarn in order to build the front end during packaging @@ -180,7 +180,7 @@ jobs: path: .venv key: venv-tox-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} - name: Install dependencies - if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + # if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root --with test,docs --no-plugins # Grab the built artifacts to ensure we're testing what we eventually publish