Skip to content

Commit 9009400

Browse files
committed
🐎 ci: ...
1 parent 63f766f commit 9009400

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,18 @@ jobs:
2525
id-token: write
2626
contents: read
2727
concurrency:
28-
group: test-coverage-${{ github.ref }}-${{ matrix.python-version }} #-${{ env.OS}}
28+
group: test-coverage-${{ github.ref }}-${{ matrix.python-version }}-${{ matrix.os }}
2929
cancel-in-progress: true
3030

3131
strategy:
3232
fail-fast: false
3333
matrix:
3434
python-version: ["3.10", "3.11", "3.12", "3.13"]
35-
# os: [ubuntu-latest, windows-latest, macos-latest]
35+
os: [ubuntu-latest, windows-latest, macos-latest]
36+
# pydantic-version: ["v1", "v2"]
3637

3738
env:
38-
# OS: ${{ matrix.os }}
39+
OS: ${{ matrix.os }}
3940
PYTHON_VERSION: ${{ matrix.python-version }}
4041
UV_NO_SYNC: 1
4142

@@ -59,11 +60,11 @@ jobs:
5960
if: ${{ !cancelled() }}
6061
uses: codecov/test-results-action@v1
6162
with:
62-
env_vars: PYTHON_VERSION, PYDANTIC_VERSION
63+
env_vars: PYTHON_VERSION, OS
6364
use_oidc: true
6465

6566
- name: Upload coverage to Codecov
6667
uses: codecov/codecov-action@v5
6768
with:
68-
env_vars: PYTHON_VERSION, PYDANTIC_VERSION
69+
env_vars: PYTHON_VERSION, OS
6970
use_oidc: true

0 commit comments

Comments
 (0)