Skip to content

Commit d88d604

Browse files
committed
move lint job from pip to uv
1 parent 5098e48 commit d88d604

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,16 @@ jobs:
3737
uses: actions/setup-python@v5
3838
with:
3939
python-version: "3.11"
40-
cache: "pip"
40+
41+
- name: Install uv
42+
uses: astral-sh/setup-uv@v1
43+
with:
44+
enable-cache: true
4145

4246
- name: Install dependencies
4347
run: |
44-
python -m pip install --upgrade pip
45-
pip install .[dev]
48+
uv venv
49+
uv pip install .[dev]
4650
4751
- name: pylint analysis and custom pylint HTML report
4852
run: |

0 commit comments

Comments
 (0)