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