From 75ab5757866148c703923324b41d61f667e6cb0c Mon Sep 17 00:00:00 2001 From: Craig Russell Date: Thu, 31 Aug 2023 16:08:01 +0100 Subject: [PATCH] removing poetry lock cache --- .github/workflows/test.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1720c512..b089d6d2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -30,12 +30,12 @@ jobs: #---------------------------------------------- # load cached venv if cache exists #---------------------------------------------- - - name: Load cached venv - id: cached-poetry-dependencies - uses: actions/cache@v2 - 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@v2 + # with: + # path: .venv + # key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} #---------------------------------------------- # install dependencies if cache does not exist #---------------------------------------------- @@ -44,7 +44,8 @@ jobs: run: poetry install --no-interaction --no-root #---------------------------------------------- # install your root project, if required - #---------------------------------------------- + - name: Poetry lock + run: poetry lock - name: Install library run: poetry install --no-interaction #----------------------------------------------