Skip to content

Commit 65313b5

Browse files
committed
Updated the Github Action workflow.
1 parent e7dedd4 commit 65313b5

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,11 +19,11 @@ jobs:
1919
with:
2020
python-version: '3.8'
2121

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

25-
- name: Check Code Formatting with Black
26-
run: black --check .
25+
- name: Auto-fix Formatting Issues with Black
26+
run: black .
2727

2828
- name: Auto-fix Linting Errors with Ruff
2929
run: ruff --fix .

0 commit comments

Comments
 (0)