From fb039c9c9ba81931a38e3439a34315d8c8d39626 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 7 Jun 2020 17:09:13 +0200 Subject: [PATCH] Probably fix Actions build. --- .github/workflows/build-test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index db0dbcac98..a671d902b2 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -1,4 +1,4 @@ -name: .NET Core +name: Build & Test on: push: @@ -23,5 +23,7 @@ jobs: run: dotnet restore - name: Build run: dotnet build --configuration Release --no-restore - - name: Test - run: dotnet test --no-restore --verbosity normal + - name: Content.Tests + run: dotnet test --no-build Content.Tests/Content.Tests.csproj + - name: Content.IntegrationTests + run: dotnet test --no-build Content.Tests/Content.Tests.csproj