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 72d2882 commit a2f8a7bCopy full SHA for a2f8a7b
.github/workflows/test.yml
@@ -43,17 +43,23 @@ jobs:
43
pydantic_ver: ["<2", ">=2.5,<3"]
44
os: [ubuntu-latest, windows-latest, macos-latest]
45
runs-on: "${{ matrix.os }}"
46
+ env:
47
+ UV_SYSTEM_PYTHON: 1
48
steps:
49
- uses: actions/checkout@v5
50
with:
51
persist-credentials: false
52
+ - name: Setup python
53
+ uses: actions/setup-python@v6
54
+ with:
55
+ python-version: '${{ matrix.py_version }}'
56
- id: setup-uv
57
+ name: Setup UV
58
uses: astral-sh/setup-uv@v7
59
60
enable-cache: true
61
cache-suffix: ${{ matrix.py_version }}
62
version: "latest"
- python-version: ${{ matrix.py_version }}
63
- name: Install deps
64
run: uv sync --all-extras
65
- name: Setup pydantic version
0 commit comments