From 19fda46f4b5c28f9af4d3969d3155bc96e113cb6 Mon Sep 17 00:00:00 2001 From: "Laisky.Cai" Date: Wed, 15 Jan 2025 01:02:42 +0000 Subject: [PATCH] tests: add ffmpeg installation step to lint workflow --- .github/workflows/lint.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2d131f81..460fe33d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,6 +20,9 @@ jobs: with: go-version: ^1.23 + - name: Install ffmpeg + run: sudo apt-get update && sudo apt-get install -y ffmpeg + # When you execute your unit tests, make sure to use the "-coverprofile" flag to write a # coverage profile to a file. You will need the name of the file (e.g. "coverage.txt") # in the next step as well as the next job.