FFMpegCore/.github/workflows/ci.yml

21 lines
436 B
YAML
Raw Normal View History

2020-02-16 09:46:30 +00:00
name: CI
2020-02-21 17:13:59 +00:00
on:
push:
branches:
2020-02-26 18:30:43 +00:00
- master
2020-02-16 09:46:30 +00:00
jobs:
2020-02-21 16:57:25 +00:00
ci:
2020-02-16 10:02:59 +00:00
runs-on: ubuntu-latest
2020-02-16 09:46:30 +00:00
steps:
- uses: actions/checkout@v1
2020-02-16 10:13:21 +00:00
- name: Prepare FFMpeg
2020-02-16 10:16:28 +00:00
run: sudo apt-get update && sudo apt-get install -y ffmpeg
2020-02-16 09:46:30 +00: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