Skip to content

Commit

Permalink
Add test workflow for pydantic1
Browse files Browse the repository at this point in the history
Change-Id: I3473afc0e61bb73c3af527927c1a45c475e89219
  • Loading branch information
MarkDaoust committed Jun 3, 2024
1 parent 2148727 commit 9844518
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,21 @@ jobs:
python --version
pip install .[dev]
python -m unittest
test_pydantic1:
name: Test Pydantic1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Run tests
run: |
python --version
pip install .[dev]
pip install -U "pydantic<2"
python -m unittest
test3_10:
name: Test Py3.10
runs-on: ubuntu-latest
Expand Down

0 comments on commit 9844518

Please sign in to comment.