Skip to content

Commit

Permalink
add ruff to ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Oct 20, 2024
1 parent ff87e72 commit 78dd4fb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ jobs:
pip install -r requirements.txt
pip install psutil
pip install flake8
pip install ruff
- name: flake8
run: |
flake8 . --exclude src/exabgp/vendoring/ --exclude build/ --exclude site-packages --count --select=E9,F63,F7,F82 --show-source --statistics
- name: ruff
run: |
ruff check src

0 comments on commit 78dd4fb

Please sign in to comment.