Add github action build workflow

pull/104/head
Pavel Djundik 6 years ago
parent 2ca1f3e8e6
commit 70a6e97bef

@ -0,0 +1,25 @@
name: .NET Core CI
on: [push, pull_request]
jobs:
build:
name: .NET on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build -c Release
Loading…
Cancel
Save