Skip to content

Commit 05a7526

Browse files
committed
Add build step for running tests against [email protected]
1 parent 53d3098 commit 05a7526

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/cicd.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,11 @@ jobs:
4848
- name: Run tests against 'pydantic@latest'
4949
run: |
5050
python -m pytest --cov=pydantic2ts --cov-append
51-
- name: Run tests using 'pydantic==1.*.*'
51+
- name: Run tests against 'pydantic==1.8.2'
52+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8' }}
5253
run: |
53-
python -m pip install 'pydantic<2'
54+
python -m pip install 'pydantic==1.8.2'
55+
python -m pip install -U .
5456
python -m pytest --cov=pydantic2ts --cov-append
5557
- name: Combine coverage data
5658
run: |

0 commit comments

Comments
 (0)