FFMpegCore/.github/workflows/ci.yml
Malte Rosenbjerg 2f2f3328d3 Use NET 5.0 in pipelines
Former-commit-id: f6e4e31c0a
2020-12-06 00:38:20 +01:00

25 lines
497 B
YAML

name: CI
on:
push:
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: 5.0
- name: Test with dotnet
run: dotnet test --logger GitHubActions