From 8c4afd87c97fa6a04b7909095fdf9f428ffa12f2 Mon Sep 17 00:00:00 2001 From: cswimr Date: Tue, 18 Mar 2025 03:57:07 -0500 Subject: [PATCH] Revert "fix(actions): don't use `uv run`" This reverts commit 091a23d6100a748c8c636a4d15afa6287a155b8a. --- .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 4c849ef..4bc9faa 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: ruff check $(git ls-files '*.py') + run: uv run ruff check $(git ls-files '*.py') continue-on-error: true - name: Analysing code with Pylint - run: pylint --rcfile=.forgejo/workflows/config/.pylintrc $(git ls-files '*.py') + run: uv 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" - mkdocs build -v + uv run mkdocs build -v - name: Deploy documentation run: |