Skip to content

Commit

Permalink
add python linter, ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
AdelekeBankole committed Jan 14, 2025
1 parent 02ba569 commit 49f6e5b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test_suite_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@ jobs:
deactivate
cd ../../
# Add Python linter which is ruff
- name: ruff
if: always()
run: |
cd ${{ github.workspace }}
ruff format --diff $(git ls-files *.py)
ruff check --diff $(git ls-files *.py)
# Build the code
- name: Build test suite
run: |
Expand Down

0 comments on commit 49f6e5b

Please sign in to comment.