Skip to content

Commit e0b6585

Browse files
committed
update CI to use uv
1 parent c591ba8 commit e0b6585

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/ci.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,14 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v3
2222

23-
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v5
23+
- name: Install uv
24+
uses: astral-sh/setup-uv@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

28+
- name: Set up Python
29+
run: uv python install
30+
2831
- name: Install dependencies
2932
run: make install-lint
3033

@@ -48,11 +51,14 @@ jobs:
4851
steps:
4952
- uses: actions/checkout@v3
5053

51-
- name: Set up Python ${{ matrix.python-version }}
52-
uses: actions/setup-python@v5
54+
- name: Install uv
55+
uses: astral-sh/setup-uv@v5
5356
with:
5457
python-version: ${{ matrix.python-version }}
5558

59+
- name: Set up Python
60+
run: uv python install
61+
5662
- name: Install dependencies
5763
run: make install
5864

0 commit comments

Comments
 (0)