We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc5e153 commit 1e856eaCopy full SHA for 1e856ea
.github/workflows/test.yml
@@ -41,13 +41,12 @@ 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"
+ python-version: ["3.13", "3.14"]
+ os: [windows-latest, macos-latest, ubuntu-latest]
51
52
steps:
53
- uses: actions/checkout@v4
@@ -69,5 +68,6 @@ jobs:
69
68
- name: Upload coverage
70
uses: codecov/codecov-action@v5
71
with:
+ flags: ${{ matrix.os }}
72
name: Python ${{ matrix.python-version }}
73
token: ${{ secrets.CODECOV_ORG_TOKEN }}
0 commit comments