We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53d3098 commit 05a7526Copy full SHA for 05a7526
.github/workflows/cicd.yml
@@ -48,9 +48,11 @@ jobs:
48
- name: Run tests against 'pydantic@latest'
49
run: |
50
python -m pytest --cov=pydantic2ts --cov-append
51
- - name: Run tests using 'pydantic==1.*.*'
+ - name: Run tests against 'pydantic==1.8.2'
52
+ if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8' }}
53
- python -m pip install 'pydantic<2'
54
+ python -m pip install 'pydantic==1.8.2'
55
+ python -m pip install -U .
56
57
- name: Combine coverage data
58
0 commit comments