tests: add ffmpeg installation step to lint workflow

This commit is contained in:
Laisky.Cai 2025-01-15 01:02:42 +00:00
parent 2cdc27475f
commit 19fda46f4b

View File

@ -20,6 +20,9 @@ jobs:
with: with:
go-version: ^1.23 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 # 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") # 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. # in the next step as well as the next job.