Merge pull request #104 from xPaw/gh-actions

Add github action build workflow
pull/119/head
Yaakov 6 years ago committed by GitHub
commit 4372ea7045
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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