Files
seafile-mirror/.gitea/poetrybuild/action.yaml
Max Mehl 9bbd95396c
Some checks failed
Test suites / selftest (pull_request) Failing after 5s
Test suites / reuse (pull_request) Failing after 17s
add some first CI tests and pilots
2024-01-16 14:28:45 +01:00

24 lines
532 B
YAML

# SPDX-FileCopyrightText: 2023 DB Systel GmbH
#
# 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
poetry install --no-interaction
shell: bash