File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 2929
3030 strategy :
3131 matrix :
32- os : [ubuntu-latest, macos-latest]
33- python-version : ["3.9"]
32+ os : [ubuntu-latest, macos-latest, windows-latest ]
33+ python-version : ["3.9", "3.10", "3.11", "3.12" ]
3434
3535 steps :
3636 - uses : actions/checkout@v4
5656
5757 - name : Test
5858 run : make coverage
59-
59+ if : matrix.os != 'windows-latest'
60+
61+ - name : Test
62+ run : |
63+ call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
64+ make coverage
65+ shell : cmd
66+ if : matrix.os == 'windows-latest'
67+
6068 - name : Upload test results (Python)
6169 uses : actions/upload-artifact@v4
6270 with :
6876 uses : EnricoMi/publish-unit-test-result-action@v2
6977 with :
7078 files : ' **/junit.xml'
71- if : matrix.os == 'ubuntu-latest'
79+ if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
7280
7381 - name : Upload coverage
7482 uses : codecov/codecov-action@v5
8290 with :
8391 name : dist-${{matrix.os}}
8492 path : dist
85- if : matrix.os == 'ubuntu-latest'
93+ if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
You can’t perform that action at this time.
0 commit comments