add CI tests and publishing workflows

This commit is contained in:
2024-01-16 14:28:45 +01:00
parent 6d62bcf3ab
commit 041ccd24ef
5 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# SPDX-FileCopyrightText: 2023 DB Systel GmbH
#
# SPDX-License-Identifier: Apache-2.0
name: "Reusable Poetry build workflow"
runs:
using: "composite"
steps:
- name: Install dependencies
run: |
pip install poetry
poetry install --no-interaction
shell: bash