From b50e9160ba21e1c39a3b27ee9a33046e43910fde Mon Sep 17 00:00:00 2001 From: Julian Tabel Date: Sat, 21 Feb 2026 16:32:51 +0100 Subject: [PATCH] Add uv to PATH after install in CI The uv installer places the binary in ~/.local/bin which isn't on PATH by default in the act runner. Source the env file for the current step and append to GITHUB_PATH for subsequent steps. Co-Authored-By: Claude Opus 4.6 --- ...tbk--fix-ci-workflow-failures-for-backend-and-e2e-tests.md | 4 ++-- .github/workflows/ci.yml | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.beans/nuzlocke-tracker-wtbk--fix-ci-workflow-failures-for-backend-and-e2e-tests.md b/.beans/nuzlocke-tracker-wtbk--fix-ci-workflow-failures-for-backend-and-e2e-tests.md index ec1c045..0fb0cc8 100644 --- a/.beans/nuzlocke-tracker-wtbk--fix-ci-workflow-failures-for-backend-and-e2e-tests.md +++ b/.beans/nuzlocke-tracker-wtbk--fix-ci-workflow-failures-for-backend-and-e2e-tests.md @@ -1,11 +1,11 @@ --- # nuzlocke-tracker-wtbk title: Fix CI workflow failures for backend and e2e tests -status: in-progress +status: completed type: bug priority: normal created_at: 2026-02-21T15:26:22Z -updated_at: 2026-02-21T15:27:40Z +updated_at: 2026-02-21T15:29:08Z --- Two failures in CI: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 240a6fa..2a86a03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,8 @@ jobs: - name: Install uv and Python run: | curl -LsSf https://astral.sh/uv/install.sh | sh + source "$HOME/.local/bin/env" + echo "$HOME/.local/bin" >> "$GITHUB_PATH" uv python install 3.14 - name: Install dependencies run: uv pip install --system --python 3.14 -e ".[dev]"