Skip to content

Commit dfef623

Browse files
committed
Try to use a venv
1 parent 0b5b67f commit dfef623

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/actions/python_install/action.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,13 @@ runs:
1515
run:
1616
sudo apt-get -y install python3-pip
1717
shell: bash
18+
- name: Install Venv
19+
run:
20+
sudo apt install python3-venv
21+
shell: bash
22+
- name: Setup Venv
23+
run: |
24+
python3 -m venv .venv
25+
source .venv/bin/activate
26+
echo PATH=$PATH >> $GITHUB_ENV
27+
shell: bash

0 commit comments

Comments
 (0)