Skip to content

Add basic subtitle conversion/removal #18

Add basic subtitle conversion/removal

Add basic subtitle conversion/removal #18

Workflow file for this run

name: PRs
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run pre-commit
uses: pre-commit/[email protected]
test:
runs-on: ubuntu-latest
needs: pre-commit
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y ffmpeg dialog
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install -e .
- name: Run pytest
run: pytest