Skip to content

v1.2.0: self-contained pipeline - built-in scoring, one command, configurable output #1

v1.2.0: self-contained pipeline - built-in scoring, one command, configurable output

v1.2.0: self-contained pipeline - built-in scoring, one command, configurable output #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Compile check
run: python -m py_compile chopify.py download_and_transcribe.py score_clips.py render_clips.py tighten.py
- name: Run tests
run: pytest tests/ -q