mirror of
https://github.com/leandromoreira/ffmpeg-libav-tutorial.git
synced 2026-03-26 04:31:27 +00:00
24 lines
374 B
YAML
24 lines
374 B
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Run hello example
|
|
run: make make_hello
|
|
- name: Run remuxing
|
|
run: make make_remuxing
|
|
- name: Run transcoding
|
|
run: make make_transcoding
|
|
|