We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac0e6c9 commit 10f9b06Copy full SHA for 10f9b06
.github/workflows/tox.yml
@@ -12,6 +12,7 @@ jobs:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
15
+ os: [windows-latest, ubuntu-latest, macos-latest]
16
python-version: [2.7, 3.9]
17
18
steps:
@@ -27,7 +28,19 @@ jobs:
27
28
run: |
29
pip install tox
30
- - name: Run Test
31
+ - name: Run Windows Test
32
+ if: runner.os == 'Windows'
33
+ run: |
34
+ python -m tox -c python/tox_windows.ini
35
+
36
+ - name: Run Linux Test
37
+ if: runner.os != 'Linux'
38
39
+ cd $GITHUB_WORKSPACE/python
40
+ tox -e py
41
42
+ - name: Run MacOS Test
43
+ if: runner.os != 'macOS'
44
45
cd $GITHUB_WORKSPACE/python
46
tox -e py
.github/workflows/tox_windows.yml
0 commit comments