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