Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dd5c427

Browse files
committedApr 13, 2025·
Test on three operating systems
1 parent f30fec8 commit dd5c427

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,14 @@ jobs:
4141
4242
unit:
4343
name: Unit tests
44-
runs-on: ubuntu-latest
44+
runs-on: ${{ matrix.os }}
4545
strategy:
4646
fail-fast: false
4747
matrix:
4848
python-version:
4949
- "3.13"
5050
- "3.14"
51+
os: [windows-latest, macos-latest, ubuntu-latest]
5152

5253
steps:
5354
- uses: actions/checkout@v4
@@ -69,5 +70,6 @@ jobs:
6970
- name: Upload coverage
7071
uses: codecov/codecov-action@v5
7172
with:
73+
flags: ${{ matrix.os }}
7274
name: Python ${{ matrix.python-version }}
7375
token: ${{ secrets.CODECOV_ORG_TOKEN }}

0 commit comments

Comments
 (0)
Please sign in to comment.