We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaa6176 commit 7ce0af9Copy full SHA for 7ce0af9
1 file changed
.github/workflows/main.yml
@@ -15,14 +15,10 @@ jobs:
15
with:
16
python-version: "3.x"
17
18
- - name: install uv
19
- run: pip install uv
20
-
21
- - name: install dependencies with uv
22
- run: uv pip install -r requirements.txt
23
24
- - name: install ruff
25
- run: uv pip install ruff
+ - name: install ruff via uv
+ run: |
+ pip install uv
+ uv pip install ruff
26
27
- name: run ruff with autofix
28
run: ruff check --fix .
0 commit comments