CI: build/test separately
This commit is contained in:
parent
9e4f5d8e40
commit
8e02bb294a
14
.github/workflows/dotnetcore.yml
vendored
14
.github/workflows/dotnetcore.yml
vendored
@ -13,5 +13,17 @@ jobs:
|
|||||||
uses: actions/setup-dotnet@v1
|
uses: actions/setup-dotnet@v1
|
||||||
with:
|
with:
|
||||||
dotnet-version: 5.0.x
|
dotnet-version: 5.0.x
|
||||||
- name: Build and test with dotnet
|
- 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:
|
||||||
|
dotnet-version: 5.0.x
|
||||||
|
- name: Run automated tests
|
||||||
run: dotnet test --configuration Release
|
run: dotnet test --configuration Release
|
||||||
|
Loading…
Reference in New Issue
Block a user