Skip to content

Commit c3cf955

Browse files
committed
Use uv on CI
1 parent 19bd4e0 commit c3cf955

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/main.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ jobs:
3737

3838
steps:
3939
- uses: actions/checkout@v4
40+
- name: Install uv
41+
uses: astral-sh/setup-uv@v5
4042

4143
- name: Set up Python ${{ matrix.python-version }}
4244
uses: actions/setup-python@v5
@@ -47,9 +49,9 @@ jobs:
4749

4850
- name: Install project dependencies
4951
run: |
50-
pip install --upgrade pip setuptools
51-
pip install codecov '.[tests]' '${{ matrix.urllib3-requirement }}'
52-
pip check
52+
uv pip install --system --upgrade pip setuptools
53+
uv pip install --system codecov '.[tests]' '${{ matrix.urllib3-requirement }}'
54+
uv pip check
5355
5456
- name: Allow creation of user namespaces (e.g. to the unshare command)
5557
run: |

0 commit comments

Comments
 (0)