mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Merge branch 'master' of https://github.com/rosenbjerg/FFMpegCore
This commit is contained in:
commit
f2dae96a03
2 changed files with 17 additions and 1 deletions
16
.github/workflows/ci.yml
vendored
Normal file
16
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: CI
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- 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
|
|
@ -1,6 +1,6 @@
|
|||
language: csharp
|
||||
mono: none
|
||||
dotnet: 2.1.300
|
||||
dotnet: 3.1
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
|
|
Loading…
Reference in a new issue