fix(ci): install ruff before lint step
All checks were successful
CI / Backend (Python) (push) Successful in 1m33s
CI / Frontend (Vue) (push) Successful in 19s
CI / Backend (Python) (pull_request) Successful in 1m21s
CI / Frontend (Vue) (pull_request) Successful in 19s

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:
pyr0ball 2026-05-21 12:03:46 -07:00
parent e4c5744d87
commit 02d79e6727

View file

@ -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 .