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 4dcfebf commit 1097b9aCopy full SHA for 1097b9a
.github/workflows/test.yml
@@ -23,7 +23,6 @@ env:
23
24
jobs:
25
test:
26
- runs-on: ubuntu-latest
27
strategy:
28
matrix:
29
os: [ ubuntu-latest, windows-latest, macos-latest ]
@@ -51,6 +50,7 @@ jobs:
51
50
python-version: "3.11"
52
pydantic-version: pydantic-v2
53
fail-fast: false
+ runs-on: ${{ matrix.os }}
54
steps:
55
- uses: actions/checkout@v4
56
- name: Set up Python
@@ -92,7 +92,7 @@ jobs:
92
- name: Store coverage files
93
uses: actions/upload-artifact@v4
94
with:
95
- name: coverage-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
+ name: coverage-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
96
path: coverage
97
include-hidden-files: true
98
0 commit comments