test: add pytest coverage and run tests in CI
Build and publish container / build (push) Failing after 1m7s

This commit is contained in:
2026-06-17 16:14:22 +01:00
parent 739280f930
commit aa746b780d
4 changed files with 141 additions and 0 deletions
+9
View File
@@ -40,7 +40,16 @@ jobs:
# Full history and tags are required to derive the next version
# from the conventional-commit messages since the last release.
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install test dependencies
run: python -m pip install --upgrade pip && pip install -r requirements.txt
- name: Run unit tests
run: pytest -q
- name: Determine registry host
run: echo "REGISTRY=${GITHUB_SERVER_URL#*://}" >> "$GITHUB_ENV"