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 10f9b06 commit 45c80bcCopy full SHA for 45c80bc
.github/workflows/tox.yml
@@ -9,7 +9,7 @@ on:
9
jobs:
10
test:
11
name: Test
12
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
13
strategy:
14
matrix:
15
os: [windows-latest, ubuntu-latest, macos-latest]
@@ -28,19 +28,7 @@ jobs:
28
run: |
29
pip install tox
30
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'
+ - name: Run Test
44
45
cd $GITHUB_WORKSPACE/python
46
tox -e py
0 commit comments