Skip to content

Debug ffmpegio via SSH #1

Debug ffmpegio via SSH

Debug ffmpegio via SSH #1

Workflow file for this run

name: Debug ffmpegio via SSH
on:
workflow_dispatch:
inputs:
os:
type: choice
description: 'Select OS'
required: true
options:
- ubuntu-latest
- macos-latest
- windows-latest
default: macos-latest
python_version:
type: choice
description: 'Select OS'
required: true
options:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
default: "3.10"
jobs:
debug:
runs-on: ${{github.event.inputs.os}}
steps:
- run: echo ${{github.ref}}
- uses: actions/checkout@v4
- name: Setup FFmpeg
uses: AnimMouse/setup-ffmpeg@v1
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.arch }}
- name: Setup Python dependencies
run: |
python -m pip install -U pip
pip install -e .
pip install -r tests/requirements.txt
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3