Skip to content

Commit fcffe15

Browse files
committed
🚧 added ruff for code quality
1 parent 731f20f commit fcffe15

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-code-format-check.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install black flake8 isort
23+
pip install black isort ruff
2424
2525
- name: Run linters
2626
run: |
27+
isort --check-only .
2728
black --check .
28-
flake8 .
29-
isort --check-only .
29+
ruff check

0 commit comments

Comments
 (0)