Files
seafile-mirror/.gitea/actions/poetrybuild/action.yaml
Max Mehl 752c2a37ae
Some checks failed
Python Linters / pylint (pull_request) Failing after 51s
Python Linters / formatting (pull_request) Failing after 51s
REUSE Compliance / reuse (pull_request) Successful in 15s
Selftests / test-build-install (pull_request) Failing after 11s
Python Linters / mypy (pull_request) Failing after 51s
Selftests / test-sync (pull_request) Failing after 38s
printenv
2025-01-12 13:19:58 +01:00

24 lines
578 B
YAML

# SPDX-FileCopyrightText: 2023 DB Systel GmbH
#
# SPDX-License-Identifier: Apache-2.0
name: "Reusable Poetry build workflow"
inputs:
poetry_install_args:
default: ""
description: "Value for additional poetry install arguments"
required: false
runs:
using: "composite"
steps:
- run: echo "gitea $GITEA_PATH"
- run: printenv
- name: Test
run: echo $PATH
- name: Install poetry
run: pipx install poetry
- name: Install poetry package
run: poetry install --no-interaction ${{ inputs.poetry_install_args }}
shell: bash