From 24e3049f3c8428051ffa44f01eacca95d6a58278 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9cile=20Vuilleumier?= Date: Mon, 7 Oct 2024 10:54:43 +0200 Subject: [PATCH] Use venv --- .github/workflows/main.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 171756e..5a49dd6 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -23,8 +23,11 @@ jobs: if: env.HAS_SECRETS == 'HAS_SECRETS' - run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH} - - run: python3 -m pip install --user --requirement=ci/requirements.txt - + - run: | + python3 -m venv /tmp/venv + export PATH=/tmp/venv/bin:$PATH + python3 -m pip install --requirement=ci/requirements.txt + name: Install CI requirements - uses: actions/cache@v4 with: path: ~/.cache/pre-commit