Skip to content

fix(video): 자막 환각 억제 재이식 — 재생성이 목소리를 튀게 하고 런까지 죽였다 (#129) #330

fix(video): 자막 환각 억제 재이식 — 재생성이 목소리를 튀게 하고 런까지 죽였다 (#129)

fix(video): 자막 환각 억제 재이식 — 재생성이 목소리를 튀게 하고 런까지 죽였다 (#129) #330

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
test:
name: Lint & Test (py${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint (ruff)
run: ruff check .
- name: Test (pytest)
run: pytest -q
env:
NUTTI_DRY_RUN: "true"