Skip to content

Commit b48d28d

Browse files
committed
Use UV to setup python versions
1 parent b9e9a37 commit b48d28d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/medcat-v2_main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919

2020
steps:
2121
- uses: actions/checkout@v4
22-
- name: Install uv
23-
uses: astral-sh/setup-uv@v4
22+
- name: Install uv for Python ${{ matrix.python-version }}
23+
uses: astral-sh/setup-uv@v6
2424
with:
2525
enable-cache: true
26-
# cache-dependency-glob: "uv.lock" # TODO - missing lock file
27-
- name: Set up Python ${{ matrix.python-version }}
28-
run: uv python install ${{ matrix.python-version }}
26+
python-version: ${{ matrix.python-version }}
27+
# - name: Set up Python ${{ matrix.python-version }}
28+
# run: uv python install ${{ matrix.python-version }}
2929
- name: Install the project
3030
run: |
3131
uv sync --all-extras --dev

0 commit comments

Comments
 (0)