From f9f1e7a6d817604238dd2aea78953df638f74596 Mon Sep 17 00:00:00 2001 From: andi0b Date: Thu, 19 Dec 2024 01:29:07 +0100 Subject: [PATCH] github tests --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 34f3379..48201f3 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -21,8 +21,8 @@ jobs: with: dotnet-version: 9.0.x - name: Restore dependencies - run: dotnet restore + run: dotnet restore -p:test=true - name: Build - run: dotnet build /p:test=true --no-restore + run: dotnet build -p:test=true --no-restore - name: Test - run: dotnet test /p:test=true --no-build --verbosity normal + run: dotnet test -p:test=true -p:TestingPlatformShowTestsFailure=true --no-build --verbosity normal