From 09e5bb01c573f4ee1742eda0a24ab3992fba29fc Mon Sep 17 00:00:00 2001 From: Kailash B Date: Tue, 3 Sep 2024 16:22:22 +0530 Subject: [PATCH] ci:Use 'dotnet test' instead of vstest-action as workaround (#334) --- .github/workflows/build.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a3684e7e..446eaf98 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,8 +37,4 @@ jobs: run: msbuild Auth0.OidcClient.All.sln -t:rebuild -verbosity:diag -property:Configuration=Release - name: Tests - uses: microsoft/vstest-action@v1.0.0 - with: - testAssembly: '**\bin\**\*UnitTests.dll' - searchFolder: '.\' - runInParallel: false + run: dotnet test **\bin\**\*UnitTests.dll