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