add ci/cd
test / pytest (push) Failing after 54s

This commit is contained in:
2026-04-21 21:49:16 +02:00
parent 8fa3dace79
commit 5aa87f60ad
4 changed files with 203 additions and 1 deletions
+28
View File
@@ -0,0 +1,28 @@
name: test
on:
push:
branches:
- "**"
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run pytest
run: pytest