Improve short-video author and title handling #19
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| - "codex/**" | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Bootstrap local runtime | |
| run: bash scripts/bootstrap.sh --install-python | |
| - name: Dependency report | |
| run: bash scripts/bootstrap.sh | |
| - name: Compile | |
| run: .venv/bin/python -m py_compile scripts/process_share_links.py scripts/run_regression.py | |
| - name: Unit tests | |
| run: .venv/bin/python -m unittest discover -s tests -v |