FFMpegCore/.github/workflows/ci.yml
Malte Rosenbjerg 0d6acfebc8 Update ci.yml
Former-commit-id: b222340dcc
2020-02-16 11:02:59 +01:00

16 lines
334 B
YAML

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