FFMpegCore/.github/workflows/ci.yml

30 lines
570 B
YAML
Raw Normal View History

2020-02-16 09:46:30 +00:00
name: CI
2020-10-27 11:08:18 +00:00
on:
push:
branches:
- master
2020-10-27 11:08:18 +00:00
pull_request:
branches:
- master
- release
2020-02-16 09:46:30 +00:00
jobs:
2020-02-21 16:57:25 +00:00
ci:
2020-12-05 23:59:51 +00:00
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
2020-12-07 21:07:41 +00:00
timeout-minutes: 6
2020-02-16 09:46:30 +00:00
steps:
2020-12-05 23:53:11 +00:00
- name: Checkout
uses: actions/checkout@v1
2020-12-07 17:07:23 +00:00
- name: Prepare .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
2020-02-16 10:13:21 +00:00
- name: Prepare FFMpeg
uses: FedericoCarboni/setup-ffmpeg@v1-beta
2020-02-16 09:46:30 +00:00
- name: Test with dotnet
2020-10-25 16:25:46 +00:00
run: dotnet test --logger GitHubActions