Skip to content

Commit 565c592

Browse files
committed
Build specific .NET version based on matrix - Powershell verbosity
1 parent a9fd2d3 commit 565c592

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,22 +41,22 @@ jobs:
4141
shell: pwsh
4242
run: |
4343
if (${{ matrix.dotnet-version }} -like "3.1*") {
44-
dotnet build -f netcoreapp3.1 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
44+
dotnet build -f netcoreapp3.1 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity normal
4545
}
4646
elseif (${{ matrix.dotnet-version }} -like "5.0*") {
47-
dotnet build -f net5.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
47+
dotnet build -f net5.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity normal
4848
}
4949
elseif (${{ matrix.dotnet-version }} -like "6.0*") {
50-
dotnet build -f net6.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
50+
dotnet build -f net6.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity normal
5151
}
5252
elseif (${{ matrix.dotnet-version }} -like "7.0*") {
53-
dotnet build -f net7.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
53+
dotnet build -f net7.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity normal
5454
}
5555
elseif (${{ matrix.dotnet-version }} -like "8.0*") {
56-
dotnet build -f net8.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
56+
dotnet build -f net8.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity normal
5757
}
5858
elseif (${{ matrix.dotnet-version }} -like "9.0*") {
59-
dotnet build -f net9.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
59+
dotnet build -f net9.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity normal
6060
}
6161
6262
- name: Docker Compose (Start - DB Containers)

0 commit comments

Comments
 (0)