From 5e57d49d759052eb6c8bab65f689b451657ff24f Mon Sep 17 00:00:00 2001 From: Max Mehl Date: Tue, 1 Apr 2025 23:02:16 +0200 Subject: [PATCH] setup before --- .github/actions/poetrybuild/action.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/poetrybuild/action.yaml b/.github/actions/poetrybuild/action.yaml index b5f4a20..9cf67fc 100644 --- a/.github/actions/poetrybuild/action.yaml +++ b/.github/actions/poetrybuild/action.yaml @@ -17,16 +17,16 @@ inputs: runs: using: "composite" steps: - - name: Add pipx to PATH - run: echo "/root/.local/bin" >> ${GITHUB_PATH} - - name: Install poetry - run: pipx install poetry - shell: bash - name: Set up Python uses: actions/setup-python@v5 with: python-version: ${{ inputs.python }} cache: "poetry" + - name: Add pipx to PATH + run: echo "/root/.local/bin" >> ${GITHUB_PATH} + - name: Install poetry + run: pipx install poetry + shell: bash - name: Install dependencies run: poetry install --no-interaction ${{ inputs.poetry_args }} shell: bash