From 8e02bb294af7024d9332a24db834d4839062721a Mon Sep 17 00:00:00 2001 From: spiral Date: Thu, 26 Aug 2021 12:03:19 -0400 Subject: [PATCH] CI: build/test separately --- .github/workflows/dotnetcore.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index c81953cd..461c1c59 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -13,5 +13,17 @@ jobs: uses: actions/setup-dotnet@v1 with: 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