Skip to content

Commit

Permalink
github: run ruff check import linter
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Dec 17, 2024
1 parent 1716225 commit 5c57ccc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@ jobs:
python -m pip install --upgrade pip
pip install -r dev-requirements.txt
- name: Ruff formatter
id: ruff
id: ruff-format
run: |
source .venv/bin/activate
ruff format --diff
- name: Ruff import linter
id: ruff-check
run: |
source .venv/bin/activate
ruff check --select I

0 comments on commit 5c57ccc

Please sign in to comment.