Skip to content

pytest

pytest #2

Workflow file for this run

name: pytest
on:
workflow_dispatch: # Allow manual triggering
push:
branches:
- main
pull_request:
branches:
- main
- develop
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v6.2.0
with:
python-version: 3.14t
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: pytest