Skip to content

Commit

Permalink
github: Add ruff to ci.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Tomi Valkeinen <[email protected]>
  • Loading branch information
tomba committed Oct 31, 2024
1 parent 3005a00 commit d9581fc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
pip install pylint ruff
- name: Test with unittest
run: |
Expand All @@ -34,3 +34,6 @@ jobs:
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
- name: Run Ruff
run: ruff check --output-format=github .

0 comments on commit d9581fc

Please sign in to comment.