Try activating venv
parent
1c8c1f2e79
commit
c3503064c8
|
@ -174,7 +174,11 @@ jobs:
|
||||||
|
|
||||||
- name: Install Python Dependencies
|
- name: Install Python Dependencies
|
||||||
shell: bash
|
shell: bash
|
||||||
run: python$PYTHON_VERSION -m pip install -r python/dev_requirements.txt
|
run: |
|
||||||
|
if [ "${{ runner.os }}" == "macOS" ]; then
|
||||||
|
source venv/bin/activate
|
||||||
|
fi
|
||||||
|
python$PYTHON_VERSION -m pip install -r python/dev_requirements.txt
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Reference in New Issue