Skip to content

Commit

Permalink
Update run-unittests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Heerpa authored Mar 26, 2024
1 parent 41f6150 commit 78f44f2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/run-unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,15 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
- name: Set up Python A
run: |
Invoke-WebRequest -Uri https://github.com/actions/python-versions/releases/download/3.10.11-4626646535/python-3.10.11-win32-x64.zip -OutFile python-3.10.zip
Expand-Archive -InFile 'python-3.10.zip' -OutFile 'python3-10' -Force
dir
Start-Process -Wait -FilePath python-3.10.0.exe -ArgumentList '/quiet InstallAllUsers=1 PrependPath=1'
python3 -m pip install --upgrade pip
- name: Set up Python B
uses: actions/setup-python@v5
with:
python-version: '3.10'
Expand Down

0 comments on commit 78f44f2

Please sign in to comment.