We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09e7c5b commit 88a6ffaCopy full SHA for 88a6ffa
.github/workflows/ci.yml
@@ -322,6 +322,10 @@ jobs:
322
path: .venv
323
key: venv-v2-${{ github.event.pull_request.head.repo.full_name || github.repository }}-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
324
325
+ - name: Add venv to PATH
326
+ if: steps.cache-deps.outputs.cache-hit == 'true'
327
+ run: echo "${{ github.workspace }}/.venv/bin" >> $GITHUB_PATH
328
+
329
- name: Install dependencies
330
if: steps.cache-deps.outputs.cache-hit != 'true'
331
run: poetry install --no-interaction --no-root --with dev
0 commit comments