Skip to content

Commit 812b202

Browse files
committed
Switch LSP workflow from pip to uv via astral-sh/setup-uv action
1 parent 6c9af80 commit 812b202

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/hamilton-lsp.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,10 @@ jobs:
3030
uses: actions/setup-python@v4
3131
with:
3232
python-version: ${{ matrix.python-version }}
33+
- uses: astral-sh/setup-uv@v6
3334
- name: Install dependencies
3435
run: |
35-
python -m pip install --upgrade pip pytest
36-
pip install -e ${{ github.workspace }}
37-
pip install -e .
36+
uv pip install --system -e ${{ github.workspace }} -e . pytest
3837
- name: Run unit tests
3938
run: |
4039
pytest tests/

0 commit comments

Comments
 (0)