add a simple netcore build for Windows/macOS/Linux (#2066)

This commit is contained in:
Brendan Forster
2020-01-27 13:50:19 -04:00
committed by GitHub
parent d8e6008b1a
commit 39fb9f6a24
+27
View File
@@ -0,0 +1,27 @@
name: Build and test with .NET Core
on:
pull_request:
branches:
- "master"
push:
branches:
- "master"
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1.4.0
with:
dotnet-version: 2.1.803
- name: Build with dotnet
run: ./build.sh --linksources=true --verbosity=verbose