From da73e5b022380b6042ef80ae865c57ecc4a73195 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Thu, 13 Nov 2025 14:09:01 +1100 Subject: [PATCH] Fix PATH --- .forgejo/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index be0809a..ce6926b 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -24,13 +24,13 @@ jobs: - name: Install project deps (including test extras) env: - PATH: "$PATH:/root/.local/bin" + PATH: ${{ env.PATH }}:/root/.local/bin run: | poetry install --with test - name: Run test script env: - PATH: "$PATH:/root/.local/bin" + PATH: ${{ env.PATH }}:/root/.local/bin run: | chmod +x ./tests.sh ./tests.sh