Skip to content

Commit

Permalink
installing ffmpeg as part of the CI flow
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocat93 committed Apr 12, 2024
1 parent 1a32b16 commit c82086f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c82086f

Please sign in to comment.