Skip to content

Commit f937eb0

Browse files
committed
Add setup-python step and adjust uv install
Introduce actions/setup-python@v5 using matrix.python-version to ensure the correct Python interpreter is available for subsequent steps. Remove the python-version input from the astral-sh/setup-uv step since Python is now configured separately. This clarifies environment setup and avoids duplicating interpreter configuration.
1 parent 0b678d6 commit f937eb0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,17 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v5
1616

17+
- name: Set up Python
18+
uses: actions/setup-python@v5
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
1722
- name: Run Dataverse Action
1823
id: dataverse
1924
uses: gdcc/dataverse-action@main
2025

2126
- name: Install uv
2227
uses: astral-sh/setup-uv@v6
23-
with:
24-
python-version: ${{ matrix.python-version }}
2528

2629
- name: Install Python Dependencies
2730
run: |

0 commit comments

Comments
 (0)