Skip to content

Commit b6da9e3

Browse files
committed
Added ruff checks
1 parent 40c63ff commit b6da9e3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/code_quality_and_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
with:
2020
python-version: '3.8'
2121

22-
- name: Install Python tools (Black, Flake8, Bandit)
23-
run: pip install black flake8 bandit
22+
- name: Install Python tools (Black, Flake8, Bandit, Ruff)
23+
run: pip install black flake8 bandit ruff
2424

2525
- name: Check Code Formatting with Black
2626
run: black --check .
2727

28-
- name: Lint with Flake8
29-
run: flake8 .
28+
- name: Auto-fix Linting Errors with Ruff
29+
run: ruff --fix .
3030

3131
- name: Security Check with Bandit
3232
run: bandit -r .

0 commit comments

Comments
 (0)