Skip to content

Commit 18a566d

Browse files
authored
add ffmpeg dependency to run-examples.yml
1 parent b1ceb14 commit 18a566d

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/run-examples.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ jobs:
3131
- name: Checkout repository
3232
uses: actions/checkout@v4
3333

34+
- name: Install system dependencies
35+
run: |
36+
sudo apt-get update
37+
sudo apt-get install -y ffmpeg
38+
3439
- name: Set up Python
3540
uses: actions/setup-python@v5
3641
with:
@@ -48,4 +53,4 @@ jobs:
4853
KWAVE_FORCE_CPU: 1
4954
run: |
5055
echo "Running example: ${{ matrix.example }}"
51-
python "${{ matrix.example }}"
56+
python "${{ matrix.example }}"

0 commit comments

Comments
 (0)