Skip to content

Update README with emoji header and remove logo #42

Update README with emoji header and remove logo

Update README with emoji header and remove logo #42

Workflow file for this run

name: 🧪 Test Suite
on:
# Run tests on all pull requests
pull_request:
branches: [ main ]
types: [opened, ready_for_review]
# Run tests when PRs are merged to main
push:
branches: [ main ]
# Allow manual triggering
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: 🔄 Checkout code
uses: actions/checkout@v4
- name: 🐍 Set up Python 3.10.18
uses: actions/setup-python@v4
with:
python-version: '3.10.18'
cache: 'pip'
- name: 📦 Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: 🧪 Run tests with pytest
run: |
python -m pytest tests/ -v --tb=short