Skip to content

Commit e07054c

Browse files
committed
.github: run ruff in CI
1 parent 97aae09 commit e07054c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ jobs:
1616
- name: Install dependencies
1717
run: |
1818
python -m pip install --upgrade pip
19-
pip install -r requirements.txt && pip install -r requirements_test.txt
19+
pip install -r requirements.txt && pip install -r requirements_test.txt && pip install ruff
20+
- name: Run ruff
21+
run: |
22+
ruff check .
2023
- name: Lint with flake8
2124
run: |
2225
make lint

0 commit comments

Comments
 (0)