Skip to content

Improve Pydantic model detection robustness (#11) #29

Improve Pydantic model detection robustness (#11)

Improve Pydantic model detection robustness (#11) #29

Workflow file for this run

name: tests
on: [push]
jobs:
test:
name: Run tests with pytest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pip-tools
pip-sync requirements/requirements.txt requirements/requirements-test.txt
- name: Test with tox
run: tox