Files
seafile-mirror/.gitea/actions/poetrybuild/action.yaml
Max Mehl 0351e55f7c
All checks were successful
Test suites / test-build-install (pull_request) Successful in 28s
Test suites / selftest (pull_request) Successful in 53s
Test suites / pylint (pull_request) Successful in 34s
Test suites / formatting (pull_request) Successful in 27s
Test suites / mypy (pull_request) Successful in 30s
Test suites / reuse (pull_request) Successful in 7s
split runs in action
2024-01-16 16:25:22 +01:00

20 lines
482 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:
- name: Install poetry
run: pip install poetry
- name: Install poetry package
run: poetry install --no-interaction ${{ inputs.poetry_install_args }}
shell: bash