Skip to content

Commit

Permalink
add a simple netcore build for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey committed Jan 27, 2020
1 parent d8e6008 commit 4a8d3ef
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/netcore.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
with:
dotnet-version: 2.1.803
- name: Build with dotnet
run: ./build.sh --coreonly=false --linksources=true --verbosity=verbose

0 comments on commit 4a8d3ef

Please sign in to comment.