FFMpegCore/.github/workflows/ci.yml

17 lines
328 B
YAML
Raw Normal View History

2020-02-16 10:46:30 +01:00
name: CI
on: [pull_request]
2020-02-16 10:36:38 +01:00
2020-02-16 10:46:30 +01:00
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