test pipeline tweaks
Some checks failed
.NET Test / .NET 8.0 (push) Failing after 11m49s
.NET Test / .NET 9.0 (push) Successful in 12m3s

This commit is contained in:
2025-11-11 19:11:12 +04:00
parent a490a9b328
commit f7484b35e2

View File

@@ -30,8 +30,8 @@ jobs:
with: with:
dotnet-version: ${{ matrix.dotnet-version }}.x dotnet-version: ${{ matrix.dotnet-version }}.x
# - name: Restore dependencies - name: Restore dependencies
# run: dotnet restore run: dotnet restore -p:TargetFramework=net${{ matrix.dotnet-version }}
- name: Build - name: Build
run: dotnet build --framework net${{ matrix.dotnet-version }} --configuration Release ./Core.Tests/Core.Tests.csproj run: dotnet build --framework net${{ matrix.dotnet-version }} --configuration Release ./Core.Tests/Core.Tests.csproj
@@ -40,7 +40,7 @@ jobs:
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 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
- name: Upload dotnet test results - name: Upload dotnet test results
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: results-net${{ matrix.dotnet-version }} name: results-net${{ matrix.dotnet-version }}
path: results-net${{ matrix.dotnet-version }}.trx path: results-net${{ matrix.dotnet-version }}.trx