From c82086fc3eee19b2b1dc6d54fbbc58570a411906 Mon Sep 17 00:00:00 2001 From: fabiocat93 Date: Fri, 12 Apr 2024 13:25:45 -0400 Subject: [PATCH] installing ffmpeg as part of the CI flow --- .github/workflows/test.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 757960cc..49a33615 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -23,6 +23,17 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + + - name: Install ffmpeg (Ubuntu) + if: startsWith(matrix.os, 'ubuntu') + run: sudo apt-get update && sudo apt-get install -y ffmpeg + - name: Install ffmpeg (macOS) + if: startsWith(matrix.os, 'macos') + run: brew install ffmpeg + - name: Install ffmpeg (Windows) + if: startsWith(matrix.os, 'windows') + run: choco install ffmpeg + - name: Install pipx and ensure it's up to date run: | python -m pip install --upgrade pipx