Skip to content

Commit 992bbd2

Browse files
author
Josh Howard
committed
Add support for Mac OSX and Windows testing on latest Python version
1 parent 5ccf5d0 commit 992bbd2

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,22 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
87
strategy:
98
fail-fast: false
109
matrix:
11-
python-version: [
12-
3.6,
13-
3.7,
14-
3.8,
15-
3.9,
16-
]
10+
os-version:
11+
- ubuntu-latest
12+
python-version:
13+
- 3.6
14+
- 3.7
15+
- 3.8
16+
- 3.9
17+
include:
18+
- python-version: 3.9
19+
os-version: windows-latest
20+
- python-version: 3.9
21+
os-version: macos-latest
22+
runs-on: ${{ matrix.os-version }}
1723
steps:
1824
- uses: actions/checkout@v2
1925
- uses: actions/setup-python@v2

0 commit comments

Comments
 (0)