Files
pyproj/.gitea/workflows/run-tests.yaml
Andrea 7b246a75e3
All checks were successful
Run tests / test (push) Successful in 1m59s
chore: update test workflow
2025-09-04 11:13:19 +02:00

27 lines
494 B
YAML

name: Run tests
on:
push:
jobs:
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
pytest