From a3b1a84219dad924f7344b5eafb7444264fd73f8 Mon Sep 17 00:00:00 2001 From: Kristaps Berzinch Date: Sat, 2 Mar 2024 17:44:51 -0500 Subject: [PATCH] Try to get venv outside of project directory --- .github/workflows/build.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0cc1ad338..e00bd6a72 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -125,15 +125,10 @@ jobs: - name: Setup Poetry uses: abatilo/actions-poetry@v2 - - name: Configure Poetry - run: | - poetry config virtualenvs.create true --local - poetry config virtualenvs.in-project true --local - - name: Cache the virtualenv uses: actions/cache@v3 with: - path: ./.venv + path: ~/.cache/pypoetry key: venv-${{ hashFiles('poetry.lock') }} - name: Install Poetry dependencies