Initial commit

This commit is contained in:
2025-05-21 16:19:06 +02:00
commit 4ec4a27b89
23 changed files with 1230 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
name: pytest
on:
workflow_dispatch:
push:
branches: [ "main" ]
tags: [ "*" ]
jobs:
pytest:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest tests