Skip to content

Run Unit Tests

Run Unit Tests #189

Workflow file for this run

name: Run Unit Tests
on:
pull_request:
branches: [main]
schedule:
- cron: '0 2 * * *' # Runs at 2:00 AM UTC every day
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12, 3.13]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
pip install .
- name: Run unit tests
run: |
pytest tests/