From c53532efc795841b65d041607441ced18d108b31 Mon Sep 17 00:00:00 2001 From: Max Mehl Date: Tue, 16 Jan 2024 14:42:58 +0100 Subject: [PATCH] using extra action again --- .gitea/actions/poetrybuild/action.yaml | 10 ---------- .gitea/workflows/test.yaml | 9 +++++---- 2 files changed, 5 insertions(+), 14 deletions(-) diff --git a/.gitea/actions/poetrybuild/action.yaml b/.gitea/actions/poetrybuild/action.yaml index d4c932d..e21cd60 100644 --- a/.gitea/actions/poetrybuild/action.yaml +++ b/.gitea/actions/poetrybuild/action.yaml @@ -3,19 +3,9 @@ # SPDX-License-Identifier: Apache-2.0 name: "Reusable Poetry build workflow" -inputs: - python: - default: "3.9" - description: "Value for 'python-version'" - required: false - type: string runs: using: "composite" steps: - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: ${{ inputs.python }} - name: Install dependencies run: | pip install poetry diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 9e4fddd..04fd247 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -58,11 +58,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - # - uses: ./.gitea/actions/poetrybuild - name: Install dependencies - run: | - pip install poetry - poetry install --no-interaction + uses: ./.gitea/actions/poetrybuild + # - name: Install dependencies + # run: | + # pip install poetry + # poetry install --no-interaction - name: Try to run app run: poetry run seafile-mirror --help