FFMpegCore/.github/workflows/ci.yml
Malte Rosenbjerg ea5f01ac64 Update ci.yml
Former-commit-id: 3fb3b8fe64
2020-08-12 17:02:35 +02:00

18 lines
446 B
YAML

name: CI
on: [push, pull_request]
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