From 58cfee067d2f8788453f2100be936b4e8d5a6337 Mon Sep 17 00:00:00 2001 From: Usame Algan Date: Wed, 9 Oct 2024 13:33:13 +0200 Subject: [PATCH] chore: create python virtual environment --- .github/actions/setup-env/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/setup-env/action.yml b/.github/actions/setup-env/action.yml index b27d0df44..81c342098 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -32,6 +32,8 @@ runs: run: | sudo apt-get update sudo apt-get -y install python3-pip python3-dev + python -m venv venv + source venv/bin/activate pip install awscli --upgrade --user - name: Project dependencies setup, node version ${{ inputs.node-version }} shell: bash