Skip to content

Commit 7ce0af9

Browse files
committed
feat: add ruff check in github actions
1 parent eaa6176 commit 7ce0af9

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,10 @@ jobs:
1515
with:
1616
python-version: "3.x"
1717

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
18+
- name: install ruff via uv
19+
run: |
20+
pip install uv
21+
uv pip install ruff
2622
2723
- name: run ruff with autofix
2824
run: ruff check --fix .

0 commit comments

Comments
 (0)