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:
|
2021-11-26 22:24:24 -05:00
|
|
|
dotnet-version: 6.0.x
|
2021-08-26 12:03:19 -04:00
|
|
|
- name: Build with dotnet
|
|
|
|
run: dotnet build --configuration Release
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: Setup .NET Core
|
|
|
|
uses: actions/setup-dotnet@v1
|
|
|
|
with:
|
2021-11-26 22:24:24 -05:00
|
|
|
dotnet-version: 6.0.x
|
2021-08-26 12:03:19 -04:00
|
|
|
- name: Run automated tests
|
2020-06-14 18:56:53 +02:00
|
|
|
run: dotnet test --configuration Release
|