We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f30fec8 commit dd5c427Copy full SHA for dd5c427
1 file changed
.github/workflows/test.yml
@@ -41,13 +41,14 @@ jobs:
41
42
unit:
43
name: Unit tests
44
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
45
strategy:
46
fail-fast: false
47
matrix:
48
python-version:
49
- "3.13"
50
- "3.14"
51
+ os: [windows-latest, macos-latest, ubuntu-latest]
52
53
steps:
54
- uses: actions/checkout@v4
@@ -69,5 +70,6 @@ jobs:
69
70
- name: Upload coverage
71
uses: codecov/codecov-action@v5
72
with:
73
+ flags: ${{ matrix.os }}
74
name: Python ${{ matrix.python-version }}
75
token: ${{ secrets.CODECOV_ORG_TOKEN }}
0 commit comments