install dependencies in a separate step
Some checks failed
Actions / Build Documentation (MkDocs) (push) Failing after 1s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 51s

This commit is contained in:
cswimr 2025-03-18 03:11:55 -05:00
parent a637701ba3
commit 13bbc0b5d9
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

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