Skip to content

Commit

Permalink
add a simple netcore build for Windows/macOS/Linux (#2066)
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey committed Jan 27, 2020
1 parent d8e6008 commit 39fb9f6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/netcore.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 39fb9f6

Please sign in to comment.