Skip to content

Commit

Permalink
Updated the Github Action workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
labrijisaad committed Apr 5, 2024
1 parent e7dedd4 commit 65313b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/code_quality_and_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
with:
python-version: '3.8'

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

- name: Check Code Formatting with Black
run: black --check .
- name: Auto-fix Formatting Issues with Black
run: black .

- name: Auto-fix Linting Errors with Ruff
run: ruff --fix .
Expand Down

0 comments on commit 65313b5

Please sign in to comment.