Skip to content

Commit 3979ff6

Browse files
committed
Run python tests on windows
1 parent 05e6862 commit 3979ff6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/python-test.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ on:
1010

1111
jobs:
1212
test:
13-
runs-on: ubuntu-latest
13+
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
1616
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
17+
os: [windows-latest, ubuntu-latest]
1718
fail-fast: false
1819
steps:
1920
- uses: actions/checkout@v2
@@ -27,7 +28,9 @@ jobs:
2728
pip install -r requirements.txt
2829
pip install -r requirements_dev.txt
2930
pip install -e .
31+
shell: bash
3032
- name: Test
3133
run: python setup.py test
34+
shell: bash
3235
- name: Upload coverage
3336
uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)