Skip to content

feat: classify visually equivalent video tracks #66

feat: classify visually equivalent video tracks

feat: classify visually equivalent video tracks #66

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
tests:
name: ${{ matrix.os }} / Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- "3.12"
steps:
- name: Check out repo
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install ffmpeg on Linux
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Install ffmpeg on macOS
if: runner.os == 'macOS'
run: brew install ffmpeg
- name: Install ffmpeg on Windows
if: runner.os == 'Windows'
run: choco install ffmpeg --yes --no-progress
- name: Run tests
run: python -m tests