From a895b16fc7d27170016c650d29ee26a09abf79d6 Mon Sep 17 00:00:00 2001 From: Sebastien Blot Date: Fri, 19 Apr 2024 09:13:16 +0200 Subject: [PATCH] re-enable caching for docker tests workflow --- .github/workflows/docker-tests.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docker-tests.yml b/.github/workflows/docker-tests.yml index 3e87d3ba4..d3ae4f90d 100644 --- a/.github/workflows/docker-tests.yml +++ b/.github/workflows/docker-tests.yml @@ -59,15 +59,15 @@ jobs: cd docker/test python -m pip install --upgrade pipenv wheel - #- name: "Cache virtualenvs" - # id: cache-pipenv - # uses: actions/cache@v4 - # with: - # path: ~/.local/share/virtualenvs - # key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} + - name: "Cache virtualenvs" + id: cache-pipenv + uses: actions/cache@v4 + with: + path: ~/.local/share/virtualenvs + key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} - name: "Install dependencies" - #if: steps.cache-pipenv.outputs.cache-hit != 'true' + if: steps.cache-pipenv.outputs.cache-hit != 'true' run: | cd docker/test pipenv install --deploy