Revert "Do we still need ffmpeg in the pipeline?"

Yes we do.

This reverts commit 87df7f6df7.
This commit is contained in:
Deluan
2023-12-27 19:37:11 -05:00
parent 87df7f6df7
commit 8617d66745
4 changed files with 26 additions and 2 deletions

View File

@@ -13,6 +13,9 @@ jobs:
name: Lint Go code
runs-on: ubuntu-latest
steps:
- name: Update ubuntu repo
run: sudo apt-get update
- name: Install taglib
run: sudo apt-get install libtag1-dev
@@ -50,8 +53,11 @@ jobs:
matrix:
go_version: [1.21.x, 1.20.x]
steps:
- name: Update ubuntu repo
run: sudo apt-get update
- name: Install taglib
run: sudo apt-get install libtag1-dev
run: sudo apt-get install libtag1-dev ffmpeg
- name: Check out code into the Go module directory
uses: actions/checkout@v3