This is not a commit

This commit is contained in:
2024-12-16 13:47:36 +02:00
parent ddf3c4505e
commit 23c1aca0c2
3 changed files with 31 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
name: Test with Pytest
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
pytest --maxfail=1 --disable-warnings -v