Make the workaround Windows specific to stop upsetting Mac

master
Beq 2023-08-31 10:36:32 +01:00
parent ffd9091970
commit e7246ea176
1 changed files with 7 additions and 1 deletions

View File

@ -36,10 +36,16 @@ jobs:
with:
python-version: '3.11'
cache: 'pip'
- run: |
- if: runner.os == 'Windows'
run: |
python3 -m pip install -r requirements.txt --user
echo "$HOME/.local/bin" >> $GITHUB_PATH
- if: runner.os != 'Windows'
run: |
python3 -m pip install -r requirements.txt
- name: Check python version
run: python -V
- name: Check python3 version