From 67fcc9f66af5657c3bbcd6d7499bd43a2108daed Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Mon, 27 Jan 2020 12:55:14 -0400 Subject: [PATCH] add a simple netcore build for Windows/macOS/Linux --- .github/workflows/netcore.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/netcore.yml diff --git a/.github/workflows/netcore.yml b/.github/workflows/netcore.yml new file mode 100644 index 0000000000..abd734e0a8 --- /dev/null +++ b/.github/workflows/netcore.yml @@ -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