Add FFmpeg setup step to Gitea workflow for enhanced media processing
All checks were successful
PR Check / check-and-test (pull_request) Successful in 1m6s

- Included a new step in the test-pr.yaml workflow to set up FFmpeg, improving the project's media handling capabilities.
- This addition complements the existing build steps for Go and frontend assets, ensuring a more comprehensive build environment.
This commit is contained in:
2026-01-02 17:48:46 -06:00
parent 3f2982ddb3
commit 1c4bd78f56

View File

@@ -10,6 +10,7 @@ jobs:
- uses: actions/setup-go@main - uses: actions/setup-go@main
with: with:
go-version-file: 'go.mod' go-version-file: 'go.mod'
- uses: FedericoCarboni/setup-ffmpeg@v3
- run: go mod tidy - run: go mod tidy
- run: cd web && npm install && npm run build - run: cd web && npm install && npm run build
- run: go build ./... - run: go build ./...