Skip to content

Commit

Permalink
chore: use python virtual environment before running pip (#827)
Browse files Browse the repository at this point in the history
  • Loading branch information
usame-algan authored Oct 9, 2024
1 parent fd74e30 commit 310429d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ runs:
run: |
sudo apt-get update
sudo apt-get -y install python3-pip python3-dev
pip install awscli --upgrade --user
python -m venv venv
source venv/bin/activate
pip install awscli --upgrade
- name: Project dependencies setup, node version ${{ inputs.node-version }}
shell: bash
run: yarn install --frozen-lockfile
Expand Down

0 comments on commit 310429d

Please sign in to comment.