github actions: add python venv to prevent permission error

This commit is contained in:
Martin Bubel 2023-12-01 19:36:28 +01:00
parent 705a66ae89
commit 69f0fe5d2f

View file

@ -28,6 +28,11 @@ jobs:
with:
python-version: ${{ matrix.version }}
- name: Setup virtual environment
run: |
python -m venv .venv
source .venv/bin/activate # this will not work on widows
- name: Upgrade pip
run: pip install --upgrade pip