Skip to content

Commit 77749da

Browse files
committed
update: test workflow
1 parent c4841e7 commit 77749da

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
- uses: actions/checkout@v5
1313
with:
1414
persist-credentials: false
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: ${{ matrix.py_version }}
1518
- id: setup-uv
1619
uses: astral-sh/setup-uv@v7
1720
with:
@@ -20,7 +23,9 @@ jobs:
2023
version: "latest"
2124
python-version: 3.11
2225
- name: Install deps
23-
run: uv sync --all-extras
26+
env:
27+
UV_NO_MANAGED_PYTHON: 1
28+
run: uv sync --all-extras --python ${{ matrix.py_version }}
2429
- name: Run lint check
2530
run: uv run pre-commit run -a ${{ matrix.cmd }}
2631
pytest:

0 commit comments

Comments
 (0)