From 928fb6ac32127cbff9a37d7d24bf6e070666fd8b Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Fri, 2 Jan 2026 15:15:47 -0600 Subject: [PATCH] chore(ci): remove UV_LINK_MODE environment variable and replace setup step with Poetry installation --- .gitea/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4eb57db..c33abde 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,9 +6,6 @@ on: - "*" workflow_dispatch: -env: - UV_LINK_MODE: copy - jobs: lint: runs-on: ubuntu-latest @@ -28,10 +25,8 @@ jobs: uses: https://git.quad4.io/actions/setup-task@0ab1b2a65bc55236a3bc64cde78f80e20e8885c2 # v1 with: version: "3.46.3" - - name: Setup uv - run: | - task setup-uv - echo "$HOME/.local/bin" >> $GITHUB_PATH + - name: Setup Poetry + run: pip install poetry - name: Setup Python environment run: task setup-python-env - name: Install Node dependencies