Skip to content

Commit 1c994c6

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

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ jobs:
4444
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 --verbosity normal
47+
dotnet build -f net5.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity detailed
4848
}
4949
elseif (${{ matrix.dotnet-version }} -like "6.0*") {
50-
dotnet build -f net6.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity normal
50+
dotnet build -f net6.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity detailed
5151
}
5252
elseif (${{ matrix.dotnet-version }} -like "7.0*") {
53-
dotnet build -f net7.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity normal
53+
dotnet build -f net7.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity detailed
5454
}
5555
elseif (${{ matrix.dotnet-version }} -like "8.0*") {
56-
dotnet build -f net8.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity normal
56+
dotnet build -f net8.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity detailed
5757
}
5858
elseif (${{ matrix.dotnet-version }} -like "9.0*") {
59-
dotnet build -f net9.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity normal
59+
dotnet build -f net9.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release --verbosity detailed
6060
}
6161
6262
- name: Docker Compose (Start - DB Containers)

0 commit comments

Comments
 (0)