Skip to content

feat: v1.3 - complete-thought clips, keyword search, review workflow, preview, preflight #3

feat: v1.3 - complete-thought clips, keyword search, review workflow, preview, preflight

feat: v1.3 - complete-thought clips, keyword search, review workflow, preview, preflight #3

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