fix(ci): install ruff before lint step
ruff is not in requirements.txt (dev-only tool) so the CI runner couldn't find it. Install explicitly in the workflow.
This commit is contained in:
parent
e4c5744d87
commit
02d79e6727
1 changed files with 3 additions and 0 deletions
|
|
@ -29,6 +29,9 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: pip install -r requirements.txt
|
||||
|
||||
- name: Install lint tools
|
||||
run: pip install ruff
|
||||
|
||||
- name: Lint
|
||||
run: ruff check .
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue