mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
41e1a871ac
Former-commit-id: a1c5a9fc60
17 lines
425 B
YAML
17 lines
425 B
YAML
name: CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
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: Build with dotnet
|
|
run: dotnet build
|
|
- name: Test with dotnet
|
|
run: dotnet test
|