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 6ade0a6 commit 2ee19ecCopy full SHA for 2ee19ec
1 file changed
‎.github/workflows/test.yml‎
@@ -64,11 +64,10 @@ jobs:
64
with:
65
limit-access-to-actor: true
66
- name: Install Dependencies
67
- run: |
68
- uv pip install -r requirements-tests.txt
69
- if [ "${{ matrix.pydantic-version }}" = "v1" ]; then
70
- uv pip install "pydantic<2.0.0"
71
- fi
+ run: uv pip install -r requirements-tests.txt
+ - name: Install Pydantic v1
+ if: matrix.pydantic-version == 'v1'
+ run: uv pip install "pydantic<2.0.0"
72
- name: Lint
73
run: bash scripts/lint.sh
74
- run: mkdir coverage
0 commit comments