Skip to content

Commit 6797a29

Browse files
authored
Update CI-windows.yml: returning Python installation
1 parent 51d1e6f commit 6797a29

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/CI-windows.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,17 @@ jobs:
2727
- name: Setup msbuild.exe
2828
uses: microsoft/setup-msbuild@v2
2929

30+
- name: Set up Python 3.13
31+
uses: actions/setup-python@v5
32+
with:
33+
python-version: '3.13'
34+
check-latest: true
35+
36+
- name: Install missing Python packages
37+
run: |
38+
python -m pip install pip --upgrade || exit /b !errorlevel!
39+
python -m pip install pytest || exit /b !errorlevel!
40+
3041
- name: Run CMake
3142
run: |
3243
cmake -G "Visual Studio 17 2022" -A x64 . || exit /b !errorlevel!

0 commit comments

Comments
 (0)