From 34a1e05c45c9baa11475f616c60c08b4dee921a9 Mon Sep 17 00:00:00 2001 From: Akber Sharifov Date: Fri, 3 May 2024 16:19:05 +0400 Subject: [PATCH] Update Tests.yml --- .github/workflows/Tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 3a4efec..c701b7b 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -22,13 +22,13 @@ jobs: dotnet-version: 8.0.x - name: Restore dependencies solution - run: dotnet restore ./Eshop.sln + run: dotnet restore ./Ebook.sln - name: Build solution - run: dotnet build ./Eshop.sln --configuration Debug + run: dotnet build ./Ebook.sln --configuration Debug - name: Test - run: dotnet test ./Eshop.sln --configuration Debug --logger "trx;LogFileName=test-results.trx" || true + run: dotnet test ./Ebook.sln --configuration Debug --logger "trx;LogFileName=test-results.trx" || true - name: Test Report uses: dorny/test-reporter@v1.7.0