FFMpegCore/.github/workflows/ci.yml
Malte Rosenbjerg 3f7b9121fa Update ci.yml
Former-commit-id: 5797fbf38e
2020-10-27 12:08:18 +01:00

27 lines
530 B
YAML

name: CI
on:
push:
branches:
- master
branches-ignore:
- release
pull_request:
branches:
- master
- release
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 7
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: Test with dotnet
run: dotnet test --logger GitHubActions