FFMpegCore/.github/workflows/ci.yml
Malte Rosenbjerg 038d7d69dd
Update ci.yml
2020-05-12 17:27:55 +02:00

21 lines
460 B
YAML

name: CI
on:
push:
branches:
- master
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v1
- name: Prepare FFMpeg
run: sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Build with dotnet
run: dotnet build
- name: Test with dotnet
run: dotnet test