From b87e56dcc46563f56fc08cab9afd72b6e7fa1fde Mon Sep 17 00:00:00 2001 From: peterdudfield Date: Tue, 15 Oct 2024 15:03:06 +0100 Subject: [PATCH] remove more cache --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bc01d23..eb126956 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,12 +44,12 @@ jobs: # Restore cached virtualenv, if available # * The pyproject.toml hash is part of the cache key, invalidating # the cache if the file changes - - name: Restore cached virtualenv - id: restore-cache - uses: actions/cache/restore@v3 - with: - path: ./venv - key: ${{ runner.os }}-venv-${{ hashFiles('**/pyproject.toml') }} +# - name: Restore cached virtualenv +# id: restore-cache +# uses: actions/cache/restore@v3 +# with: +# path: ./venv +# key: ${{ runner.os }}-venv-${{ hashFiles('**/pyproject.toml') }} # Should mirror the build-venv stage in the Containerfile - name: Build venv