Skip to content

Commit 1097b9a

Browse files
committed
Add OS version to coverage file to avoid duplicates
1 parent 4dcfebf commit 1097b9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ env:
2323

2424
jobs:
2525
test:
26-
runs-on: ubuntu-latest
2726
strategy:
2827
matrix:
2928
os: [ ubuntu-latest, windows-latest, macos-latest ]
@@ -51,6 +50,7 @@ jobs:
5150
python-version: "3.11"
5251
pydantic-version: pydantic-v2
5352
fail-fast: false
53+
runs-on: ${{ matrix.os }}
5454
steps:
5555
- uses: actions/checkout@v4
5656
- name: Set up Python
@@ -92,7 +92,7 @@ jobs:
9292
- name: Store coverage files
9393
uses: actions/upload-artifact@v4
9494
with:
95-
name: coverage-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
95+
name: coverage-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
9696
path: coverage
9797
include-hidden-files: true
9898

0 commit comments

Comments
 (0)