Skip to content

Commit bb65a5f

Browse files
committed
Add windows and macos build targets
Signed-off-by: PaulChanHK <19663576+PaulChanHK@users.noreply.github.com>
1 parent d6d280a commit bb65a5f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ on:
1515
jobs:
1616
build:
1717

18-
runs-on: ubuntu-latest
18+
runs-on: ${{ matrix.os }}
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
python-version: ["3.9", "3.10", "3.11"]
22+
os: [ubuntu-latest, macos-latest, windows-latest]
23+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2324

2425
steps:
2526
- uses: actions/checkout@v4

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
os: [ubuntu-22.04]
36+
os: [ubuntu-22.04, windows-2022, macos-11]
3737

3838
steps:
3939
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)