fix(actions): don't use uv run
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 31s
Actions / Build Documentation (MkDocs) (push) Failing after 37s

`setup-uv` should be activating the virtual environment anyway, this is
unnecessary
This commit is contained in:
cswimr 2025-03-18 03:55:14 -05:00
parent d00776c006
commit 091a23d610
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -26,11 +26,11 @@ jobs:
run: uv sync
- name: Analysing code with Ruff
run: uv run ruff check $(git ls-files '*.py')
run: ruff check $(git ls-files '*.py')
continue-on-error: true
- name: Analysing code with Pylint
run: uv run pylint --rcfile=.forgejo/workflows/config/.pylintrc $(git ls-files '*.py')
run: pylint --rcfile=.forgejo/workflows/config/.pylintrc $(git ls-files '*.py')
docs:
name: Build Documentation (MkDocs)
@ -60,7 +60,7 @@ jobs:
run: |
export SITE_URL="https://$CI_ACTION_REF_NAME_SLUG.seacogs.coastalcommits.com"
export EDIT_URI="src/branch/$CI_ACTION_REF_NAME/.docs"
uv run mkdocs build -v
mkdocs build -v
- name: Deploy documentation
run: |