Skip to content

Commit

Permalink
.github: run ruff in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jelly committed Jan 18, 2025
1 parent 97aae09 commit e07054c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt && pip install -r requirements_test.txt
pip install -r requirements.txt && pip install -r requirements_test.txt && pip install ruff
- name: Run ruff
run: |
ruff check .
- name: Lint with flake8
run: |
make lint
Expand Down

0 comments on commit e07054c

Please sign in to comment.