From 5842a636a75f8752a4dc80de577199942a24361c Mon Sep 17 00:00:00 2001 From: froukje Date: Thu, 6 Jun 2024 13:49:39 -0300 Subject: [PATCH] test workflow unittests --- .github/workflows/unit-testing.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/unit-testing.yaml b/.github/workflows/unit-testing.yaml index f506064..e714cbe 100644 --- a/.github/workflows/unit-testing.yaml +++ b/.github/workflows/unit-testing.yaml @@ -19,12 +19,12 @@ jobs: virtualenvs-in-project: true # Allow loading a cached venv created in a previous run if the lock file is identical - #- name: Load cached venv if it exists - # id: venv-cache - # uses: actions/cache@v3 - # with: - # path: .venv - # key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock', '**/pyproject.toml') }} + - name: Load cached venv if it exists + id: venv-cache + uses: actions/cache@v3 + with: + path: .venv + key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock', '**/pyproject.toml') }} - name: Install dependencies run: poetry install --no-interaction --extras all_models