💚 Fix CI test suite for Windows and MacOS (#1307)

This commit is contained in:
Sofie Van Landeghem
2025-09-18 00:19:41 +02:00
committed by GitHub
parent 192ba90b1e
commit 35c0005f44
3 changed files with 24 additions and 10 deletions
+22 -9
View File
@@ -25,17 +25,30 @@ jobs:
test:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
os: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: [ "3.13" ]
pydantic-version:
- pydantic-v1
- pydantic-v2
include:
- os: macos-latest
python-version: "3.8"
pydantic-version: pydantic-v1
- os: windows-latest
python-version: "3.9"
pydantic-version: pydantic-v2
- os: ubuntu-latest
python-version: "3.10"
pydantic-version: pydantic-v1
- os: macos-latest
python-version: "3.11"
pydantic-version: pydantic-v2
- os: windows-latest
python-version: "3.12"
pydantic-version: pydantic-v1
- os: ubuntu-latest
python-version: "3.12"
pydantic-version: pydantic-v2
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
@@ -78,7 +91,7 @@ jobs:
- name: Store coverage files
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
name: coverage-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
path: coverage
include-hidden-files: true