Skip to content

Commit

Permalink
chore: replace flake8 with ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Jan 6, 2024
1 parent e2b6fea commit f05c389
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Flake8
name: Ruff

on: [push, pull_request]

Expand All @@ -17,7 +17,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
pip install ruff
- name: Analysing the code with pylint
run: |
flake8 $(git ls-files '*.py')
ruff $(git ls-files '*.py')

0 comments on commit f05c389

Please sign in to comment.