We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51d1e6f commit 6797a29Copy full SHA for 6797a29
1 file changed
.github/workflows/CI-windows.yml
@@ -27,6 +27,17 @@ jobs:
27
- name: Setup msbuild.exe
28
uses: microsoft/setup-msbuild@v2
29
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
41
- name: Run CMake
42
run: |
43
cmake -G "Visual Studio 17 2022" -A x64 . || exit /b !errorlevel!
0 commit comments