Add test workflow
Some checks failed
Test pipeline / test (push) Failing after 52s

This commit is contained in:
Alexander Minges 2025-03-21 15:33:27 +01:00
parent 6da140413f
commit 53a1c271c6
Signed by: Athemis
SSH key fingerprint: SHA256:TUXshgulbwL+FRYvBNo54pCsI0auROsSEgSvueKbkZ4

View file

@ -0,0 +1,26 @@
name: Test pipeline
on: [push]
jobs:
test:
runs-on: docker
container:
image: python:3
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests
run: |
pytest