From f1e38db3e93a4af572a18e3028b386ca8261ab34 Mon Sep 17 00:00:00 2001 From: winnie <91998347+gwenwindflower@users.noreply.github.com> Date: Thu, 9 Apr 2026 20:25:53 -0500 Subject: [PATCH] ci(testbox): add bash step passing PATH to BASH_ENV --- .github/workflows/ci-testbox.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-testbox.yml b/.github/workflows/ci-testbox.yml index 0a67351..0a42e23 100644 --- a/.github/workflows/ci-testbox.yml +++ b/.github/workflows/ci-testbox.yml @@ -10,8 +10,8 @@ on: paths: - ".github/workflows/**" jobs: - test: - name: Test (Python 3.13) + uv-testbox: + name: Testbox uv Python v3.13 runs-on: blacksmith-4vcpu-ubuntu-2404 steps: - uses: actions/checkout@v6 @@ -21,6 +21,12 @@ jobs: python-version: "3.13" - name: Install dependencies run: uv sync --dev + - name: Capture PATH for bash environment + shell: bash + run: | + BASH_ENV_FILE="$RUNNER_TEMP/gha-testbox-path.env" + printf 'export PATH=%q\n' "$PATH" > "$BASH_ENV_FILE" + echo "BASH_ENV=$BASH_ENV_FILE" >> "$GITHUB_ENV" - name: Begin Testbox uses: useblacksmith/begin-testbox@v2 with: