From d042ca71cdf4d8e4d17f45e09699a6c64c9bd7d7 Mon Sep 17 00:00:00 2001 From: Nicholas Lambourne Date: Wed, 14 Feb 2024 21:13:21 +1000 Subject: [PATCH] remove other cache --- .github/workflows/linting.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 55fbb40..e70b86e 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -21,15 +21,15 @@ jobs: virtualenvs-create: true virtualenvs-in-project: true - - name: Load Cached venv - id: cached-poetry-dependencies - uses: actions/cache@v4 - with: - path: .venv - key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} + # - name: Load Cached venv + # id: cached-poetry-dependencies + # uses: actions/cache@v4 + # with: + # 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 --only dev @@ -55,15 +55,15 @@ jobs: virtualenvs-create: true virtualenvs-in-project: true - # - name: Load Cached venv - # id: cached-poetry-dependencies - # uses: actions/cache@v4 - # with: - # path: .venv - # key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} + - name: Load Cached venv + id: cached-poetry-dependencies + uses: actions/cache@v4 + with: + 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 --only dev