Skip to content

Fix pydantic typing error for Python 3.9 #237

Fix pydantic typing error for Python 3.9

Fix pydantic typing error for Python 3.9 #237

Workflow file for this run

name: Test Suite
on:
push:
pull_request:
branches: ['main']
jobs:
tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: pip
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -e .[test]
- name: Tests
run: scripts/test
- name: Upload coverage
uses: codecov/codecov-action@v4