testing the pipeline setup on gitea

This commit is contained in:
2026-07-28 14:07:33 +01:00
parent 63b6b9b183
commit ff2cfba1ff
+24
View File
@@ -0,0 +1,24 @@
name: CI
on:
push:
brances: [pipeline-test]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up the project
uses: actions/setup-python@v5
with:
python-version: "3.14"
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run pytest