2020-02-16 10:46:30 +01:00
|
|
|
name: CI
|
2020-08-12 17:02:35 +02:00
|
|
|
on: [push, pull_request]
|
2020-02-16 10:46:30 +01:00
|
|
|
jobs:
|
2020-02-21 17:57:25 +01:00
|
|
|
ci:
|
2020-02-16 11:02:59 +01:00
|
|
|
runs-on: ubuntu-latest
|
2020-05-12 17:27:55 +02:00
|
|
|
timeout-minutes: 10
|
2020-02-16 10:46:30 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2020-02-16 11:13:21 +01:00
|
|
|
- name: Prepare FFMpeg
|
2020-02-16 11:16:28 +01:00
|
|
|
run: sudo apt-get update && sudo apt-get install -y ffmpeg
|
2020-02-16 10:46:30 +01:00
|
|
|
- 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
|