Skip to content

chore: commit all changes including deletions and untracked files #40

chore: commit all changes including deletions and untracked files

chore: commit all changes including deletions and untracked files #40

Workflow file for this run

name: Run Unit Tests
on:
push:
branches: [ main, master, develop ]
pull_request:
branches: [ main, master, develop ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Display Python version
run: python --version
- name: Run ALL unit tests in tests/ directory
run: |
cd ${{ github.workspace }}
PYTHONPATH=src python3 -m unittest discover -s tests -p "test*.py" -v
- name: Run review_and_test.py
run: |
cd ${{ github.workspace }}
PYTHONPATH=src python3 scripts/review_and_test.py
- name: Test summary
if: success()
run: echo "✅ All unit tests and scripts passed successfully!"