Debug ffmpegio via SSH #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |