We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4841e7 commit 77749daCopy full SHA for 77749da
.github/workflows/test.yml
@@ -12,6 +12,9 @@ jobs:
12
- uses: actions/checkout@v5
13
with:
14
persist-credentials: false
15
+ - uses: actions/setup-python@v5
16
+ with:
17
+ python-version: ${{ matrix.py_version }}
18
- id: setup-uv
19
uses: astral-sh/setup-uv@v7
20
@@ -20,7 +23,9 @@ jobs:
23
version: "latest"
21
24
python-version: 3.11
22
25
- name: Install deps
- run: uv sync --all-extras
26
+ env:
27
+ UV_NO_MANAGED_PYTHON: 1
28
+ run: uv sync --all-extras --python ${{ matrix.py_version }}
29
- name: Run lint check
30
run: uv run pre-commit run -a ${{ matrix.cmd }}
31
pytest:
0 commit comments