From 4a8d3ef6deeaa859c393b38f6d150c5874d7f88f 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 Linux --- .github/workflows/netcore.yml | 17 +++++++++++++++++ 1 file changed, 17 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..fa9ba90edf --- /dev/null +++ b/.github/workflows/netcore.yml @@ -0,0 +1,17 @@ +name: Build and test with .NET Core + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1.0.2 + with: + dotnet-version: 2.1.803 + - name: Build with dotnet + run: ./build.sh --coreonly=false --linksources=true --verbosity=verbose