From 91f19dd0310f10448288d81f8c32efa02a46679a Mon Sep 17 00:00:00 2001 From: Artur Saiian <89963306+AMSaiian@users.noreply.github.com> Date: Sun, 15 Sep 2024 20:01:36 +0300 Subject: [PATCH] Updated workflow --- .github/workflows/dotnet.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 2867e27..24ed500 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -25,5 +25,8 @@ jobs: - name: Build Solution run: dotnet build backend/Task.io.sln --configuration Release --no-restore - - name: Run Unit and Integration tests - run: dotnet test backend/Task.io.sln --no-build --verbosity normal + - name: Run Unit Tests + run: dotnet test backend/tests/Taskio.UnitTests/Taskio.UnitTests.csproj --no-build --verbosity normal + + - name: Run Integration Tests + run: dotnet test backend/tests/Taskio.IntegrationTests/Taskio.IntegrationTests.csproj --no-build --verbosity normal