2019-10-26 13:18:42 +00:00
|
|
|
name: .NET Core
|
|
|
|
|
2019-10-27 11:35:13 +00:00
|
|
|
on: [push, pull_request]
|
2019-10-26 13:18:42 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2019-12-24 00:15:29 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2019-10-26 13:18:42 +00:00
|
|
|
- name: Setup .NET Core
|
|
|
|
uses: actions/setup-dotnet@v1
|
|
|
|
with:
|
2019-12-21 23:56:22 +00:00
|
|
|
dotnet-version: 3.1.100
|
2019-10-26 13:18:42 +00:00
|
|
|
- name: Build with dotnet
|
|
|
|
run: dotnet build --configuration Release
|