Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.2k
Pydantic Family Integration Tests#545
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
name:Pydantic Family Integration Tests | |
on: | |
schedule: | |
-cron:'21 3 * * 1,2,3,4,5' | |
workflow_dispatch:{} | |
jobs: | |
test-pydantic-settings: | |
name:Test pydantic settings | |
runs-on:ubuntu-latest | |
strategy: | |
matrix: | |
python-version:['3.9', '3.10', '3.11', '3.12', '3.13', '3.14'] | |
steps: | |
-uses:actions/checkout@v4 | |
-uses:astral-sh/setup-uv@v6 | |
with: | |
python-version:${{ matrix.python-version }} | |
-name:Run tests | |
run:make test-pydantic-settings | |
test-pydantic-extra-types: | |
name:Test pydantic extra types | |
runs-on:ubuntu-latest | |
strategy: | |
matrix: | |
python-version:['3.9', '3.10', '3.11', '3.12', '3.13', '3.14'] | |
steps: | |
-uses:actions/checkout@v4 | |
-uses:astral-sh/setup-uv@v6 | |
with: | |
python-version:${{ matrix.python-version }} | |
-name:Run tests | |
run:make test-pydantic-extra-types |