FFMpegCore/.github/workflows/ci.yml

21 lines
436 B
YAML
Raw Permalink Normal View History

2020-02-16 10:46:30 +01:00
name: CI
2020-02-21 18:13:59 +01:00
on:
push:
branches:
2020-02-26 19:30:43 +01:00
- master
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