From a490a9b328a478c834491c0cca4f5dc3332e9f56 Mon Sep 17 00:00:00 2001 From: just Date: Tue, 11 Nov 2025 19:04:29 +0400 Subject: [PATCH] fix dotnet build command --- .gitea/workflows/test-dotnet.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test-dotnet.yaml b/.gitea/workflows/test-dotnet.yaml index 75b2c3d..3704856 100644 --- a/.gitea/workflows/test-dotnet.yaml +++ b/.gitea/workflows/test-dotnet.yaml @@ -34,7 +34,7 @@ jobs: # run: dotnet restore - name: Build - run: dotnet build --framework net${{ matrix.dotnet-version }} --configuration Release --project ./Core.Tests/Core.Tests.csproj + run: dotnet build --framework net${{ matrix.dotnet-version }} --configuration Release ./Core.Tests/Core.Tests.csproj - name: Test run: dotnet run --no-build --framework net${{ matrix.dotnet-version }} --configuration Release --project ./Core.Tests/Core.Tests.csproj -- -trx results-net${{ matrix.dotnet-version }}.trx