From 091a23d6100a748c8c636a4d15afa6287a155b8a Mon Sep 17 00:00:00 2001 From: cswimr Date: Tue, 18 Mar 2025 03:55:14 -0500 Subject: [PATCH] fix(actions): don't use `uv run` `setup-uv` should be activating the virtual environment anyway, this is unnecessary --- .forgejo/workflows/workflow.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/workflow.yaml b/.forgejo/workflows/workflow.yaml index 4bc9faa..4c849ef 100644 --- a/.forgejo/workflows/workflow.yaml +++ b/.forgejo/workflows/workflow.yaml @@ -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: |