FFMpegCore/.github/workflows/ci.yml
Malte Rosenbjerg 6e37592e24
Update ci.yml
2020-02-21 18:13:59 +01:00

20 lines
440 B
YAML

name: CI
on:
push:
branches:
- '!release'
jobs:
ci:
runs-on: ubuntu-latest
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