installs ffmpeg in GH actions

This commit is contained in:
msramalho
2025-06-07 20:03:26 +01:00
parent d13a5ef003
commit b3183510ea
2 changed files with 7 additions and 1 deletions

View File

@@ -28,6 +28,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install ffmpeg
run: sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
@@ -35,7 +38,7 @@ jobs:
- name: Install latest Poetry
run: pipx install poetry
- name: Cache Poetry and pip artifacts
uses: actions/cache@v4
with:

View File

@@ -22,6 +22,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install ffmpeg
run: sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with: