Skip to content

Commit

Permalink
python venv
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Matting committed Apr 16, 2024
1 parent 6e2329d commit 280c61d
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,24 @@ jobs:

# choco install innosetup
- name: Setup
shell: cmd
shell: powershell
run: |
choco install python310
python --version
Remove-Item -Force -Recurse -ErrorAction SilentlyContinue venv
python -m venv venv
cd .\venv\Scripts
./Activate.ps1
cd ..\..\
pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-stage2.txt
- name: Build
shell: pwsh
shell: powershell
run: |
.\scripts\build.ps1
Expand Down

0 comments on commit 280c61d

Please sign in to comment.