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:
|
2021-11-27 03:24:24 +00:00
|
|
|
dotnet-version: 6.0.x
|
2021-08-26 16:03:19 +00: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-27 03:24:24 +00:00
|
|
|
dotnet-version: 6.0.x
|
2021-08-26 16:03:19 +00:00
|
|
|
- name: Run automated tests
|
2020-06-14 16:56:53 +00:00
|
|
|
run: dotnet test --configuration Release
|