Skip to content

CI: run container steps in github.workspace (fix git repo not found i… #9

CI: run container steps in github.workspace (fix git repo not found i…

CI: run container steps in github.workspace (fix git repo not found i… #9

Workflow file for this run

name: 🧪 Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v4
- name: 🐍 Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: 📦 Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
- name: 📦 Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: 🧪 Run tests
run: |
# Config tests only (no network). Smoke test needs Edge TTS which often returns 403 from GitHub runners.
python -m unittest tests.test_config -v