chore: update test workflow
All checks were successful
Run tests / test (push) Successful in 1m59s

This commit is contained in:
2025-09-04 11:13:19 +02:00
parent 9e0914f685
commit 7b246a75e3

View File

@@ -3,19 +3,22 @@ on:
push:
jobs:
test-project:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pip install pytest