FFMpegCore/.github/workflows/ci.yml
Malte Rosenbjerg 20f1b44e85 Output ffmpeg formats
Former-commit-id: 8c7dee1b98
2020-12-07 17:49:02 +01:00

27 lines
527 B
YAML

name: CI
on:
push:
branches-ignore:
- release
pull_request:
branches:
- master
- release
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
timeout-minutes: 4
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Prepare FFMpeg
uses: FedericoCarboni/setup-ffmpeg@v1-beta
- name: FFMpeg formats
run: ffmpeg -formats
- name: Test with dotnet
run: dotnet test --logger GitHubActions