Update README with emoji header and remove logo #42
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |