Skip to content

Commit 268cc73

Browse files
committed
Add windows and mac runners
1 parent 25d7acc commit 268cc73

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ jobs:
3030
path: .coverage
3131

3232
Test:
33-
runs-on: ubuntu-latest
3433
strategy:
3534
matrix:
3635
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
36+
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
37+
runs-on: ${{ matrix.os }}
3738
steps:
3839
- uses: actions/checkout@v4
3940
- name: Set up Python ${{ matrix.python-version }}
@@ -51,7 +52,7 @@ jobs:
5152
if: success()
5253
uses: actions/upload-artifact@v4
5354
with:
54-
name: coverage-${{ matrix.python-version }}
55+
name: coverage-${{ matrix.python-version }}-${{ matrix.os }}
5556
path: .coverage
5657

5758
combine-coverage:

0 commit comments

Comments
 (0)