From 8c3420c2a3e52cf6b68b38d5814aa94e7973732b Mon Sep 17 00:00:00 2001 From: alexmg Date: Fri, 30 Aug 2024 00:27:34 +1000 Subject: [PATCH] ci: Fix unit test folder paths --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47ff891..61632d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,10 +31,10 @@ jobs: run: dotnet build --configuration Release - name: Run unit tests - run: dotnet test test\Moniker.Tests --configuration Release --no-build --no-restore + run: dotnet test ./test/Moniker.Tests --configuration Release --no-build --no-restore - name: Run approval tests - run: dotnet test test\Moniker.ApprovalTests --configuration Release --no-build --no-restore + run: dotnet test ./test/Moniker.ApprovalTests --configuration Release --no-build --no-restore - name: Create NuGet packages run: dotnet pack --configuration Release