fix(actions): install dependencies in a separate step
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 50s
Actions / Build Documentation (MkDocs) (push) Failing after 47s

This commit is contained in:
cswimr 2025-03-18 03:11:55 -05:00
parent 6cd44c1fc7
commit fd409d450f
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -20,6 +20,9 @@ jobs:
version: "latest"
enable-cache: true
- name: "Install dependencies"
run: uv sync
- name: Analysing code with Ruff
run: uv run ruff check $(git ls-files '*.py')
continue-on-error: true