Skip to content

Commit 5713227

Browse files
Add uv installation step to GitHub Actions workflows
Co-authored-by: sophiagavrila <57912010+sophiagavrila@users.noreply.github.com>
1 parent b4bdf11 commit 5713227

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/pyright.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
uses: actions/setup-python@v6
1818
with:
1919
python-version: '3.x'
20+
- name: Install uv
21+
uses: astral-sh/setup-uv@v5
2022
- name: Install dependencies
2123
run: |
2224
python -m pip install hatch hatch-pip-compile

.github/workflows/pytest.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
uses: actions/setup-python@v6
2424
with:
2525
python-version: '3.x'
26+
- name: Install uv
27+
uses: astral-sh/setup-uv@v5
2628
- name: Install dependencies
2729
run: |
2830
python -m pip install hatch hatch-pip-compile

.github/workflows/ruff.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
uses: actions/setup-python@v6
1818
with:
1919
python-version: '3.x'
20+
- name: Install uv
21+
uses: astral-sh/setup-uv@v5
2022
- name: Install dependencies
2123
run: |
2224
python -m pip install hatch hatch-pip-compile

0 commit comments

Comments
 (0)