Skip to content

Commit e1d84cc

Browse files
Add Windows and MacOS to CI workflow
1 parent 3104e20 commit e1d84cc

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,20 @@ on:
77

88
jobs:
99
python-version:
10-
runs-on: ubuntu-22.04
10+
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.9',
14-
'3.10',
15-
'3.11',
16-
'3.12',]
13+
os: [
14+
ubuntu-22.04,
15+
windows-2022,
16+
macos-12,
17+
]
18+
python-version: [
19+
'3.9',
20+
'3.10',
21+
'3.11',
22+
'3.12',
23+
]
1724

1825
steps:
1926
- name: Checkout

0 commit comments

Comments
 (0)