2020-02-16 10:46:30 +01:00
|
|
|
name: CI
|
2020-02-21 18:13:59 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '!release'
|
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-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
|