Skip to content

Commit 68fcfb8

Browse files
committed
add windows os
1 parent 7f74780 commit 68fcfb8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ on:
99

1010
jobs:
1111
test:
12-
runs-on: ubuntu-20.04
13-
name: "python ${{ matrix.python-version }} ${{ matrix.toxenv }}"
1412
strategy:
1513
fail-fast: false
1614
matrix:
15+
os: ["ubuntu-20.04", "windows-latest"]
1716
python-version: [ 3.7, 3.8, 3.9, "3.10"]
1817
toxenv: [""]
1918
experimental: [ false ]
@@ -32,6 +31,8 @@ jobs:
3231
- experimental: true
3332
python-version: "pypy-3.7"
3433

34+
runs-on: ${{ matrix.os }}
35+
name: "python ${{ matrix.python-version }} ${{ matrix.toxenv }}"
3536

3637
continue-on-error: ${{ matrix.experimental }}
3738
env:

0 commit comments

Comments
 (0)