From 9bd0fe7e3c412e7073922433107bb8e2da4667fb Mon Sep 17 00:00:00 2001 From: Yiannis Charalambous Date: Mon, 4 Nov 2024 14:34:15 +0000 Subject: [PATCH] Update --- .github/workflows/workflow.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 7d8f014..42a43f7 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -80,20 +80,15 @@ jobs: path: . - name: Install pipenv - run: python -m pip install --upgrade pipenv wheel -r requirements.txt - - - name: Debug - run: ls + if: steps.cache-pipenv.outputs.cache-hit != 'true' + run: python -m pip install --deploy --dev --upgrade pipenv wheel -r requirements.txt - - id: cache-pipenv + - name: Cache Pipenv + id: cache-pipenv uses: actions/cache@v1.2.1 with: path: ~/.local/share/virtualenvs key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} - - name: Install dependencies - if: steps.cache-pipenv.outputs.cache-hit != 'true' - run: pipenv install --deploy --dev - - name: Run test suite run: pipenv run pytest -v