From 0763573811771fb33a23f8ba42bcdbc3cecf49d9 Mon Sep 17 00:00:00 2001 From: actbit <57023457+actbit@users.noreply.github.com> Date: Sat, 28 Feb 2026 18:53:47 +0900 Subject: [PATCH] [fix] test --- .github/workflows/nuget-publish.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nuget-publish.yml b/.github/workflows/nuget-publish.yml index 2079f67..3b3b051 100644 --- a/.github/workflows/nuget-publish.yml +++ b/.github/workflows/nuget-publish.yml @@ -25,10 +25,13 @@ jobs: run: dotnet restore - name: Build - run: dotnet build --configuration Release --no-restore + run: dotnet build src/MaskedUUID.AspNetCore/MaskedUUID.AspNetCore.csproj --configuration Release --no-restore + + - name: Build Tests + run: dotnet build tests/MaskedUUID.AspNetCore.Tests/MaskedUUID.AspNetCore.Tests.csproj --configuration Release --no-restore - name: Test - run: dotnet test --configuration Release --no-build --verbosity normal + run: dotnet test tests/MaskedUUID.AspNetCore.Tests/MaskedUUID.AspNetCore.Tests.csproj --configuration Release --no-build --verbosity normal - name: Calculate Version id: version