Skip to content

Pydantic Family Integration Tests #59

Pydantic Family Integration Tests

Pydantic Family Integration Tests #59

Workflow file for this run

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
steps:
- uses: actions/checkout@v3
- name: test
run: make test-pydantic-settings
test-pydantic-extra-types:
name: test pydantic extra types
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: test
run: make test-pydantic-extra-types
test-fastapi:
name: test fastapi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: install pydantic
run: pip install -e .
- name: test
run: make test-fastapi