From 5d1a84d1008b03a59011f8dc3beb01961f6a09ed Mon Sep 17 00:00:00 2001 From: yusyus Date: Sat, 17 Jan 2026 22:29:32 +0300 Subject: [PATCH] fix: Correct uv installation PATH in CI workflow The uv installer puts the binary in ~/.local/bin but the workflow was adding ~/.cargo/bin to PATH, causing 'uv: command not found' errors. Fixed bootstrap E2E tests failing on Python 3.10 and 3.11. Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 48dbcb2..af602a0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -65,7 +65,7 @@ jobs: - name: Install uv run: | curl -LsSf https://astral.sh/uv/install.sh | sh - echo "$HOME/.cargo/bin" >> $GITHUB_PATH + echo "$HOME/.local/bin" >> $GITHUB_PATH - name: Cache pip packages uses: actions/cache@v3