FFMpegCore/.github/workflows/ci.yml

23 lines
414 B
YAML
Raw Normal View History

2020-02-16 10:46:30 +01:00
name: CI
2020-10-27 12:08:18 +01:00
on:
push:
branches-ignore:
- release
pull_request:
branches:
- master
- release
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-10-27 12:08:18 +01:00
timeout-minutes: 7
2020-02-16 10:46:30 +01:00
steps:
2020-12-06 00:53:11 +01:00
- name: Checkout
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: Test with dotnet
2020-10-25 17:25:46 +01:00
run: dotnet test --logger GitHubActions