diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 685f6807..feeefee8 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -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