diff --git a/.github/workflows/dotnet-linux.yml b/.github/workflows/dotnet-linux.yml index 228d1f1..f9094b5 100644 --- a/.github/workflows/dotnet-linux.yml +++ b/.github/workflows/dotnet-linux.yml @@ -25,4 +25,4 @@ jobs: - name: Build run: dotnet build ./src/CSharp/EasyMicroservices.Serialization.sln --no-restore - name: Test - run: dotnet test ./src/CSharp/EasyMicroservices.Serialization.sln --no-build --verbosity normal + run: dotnet test ./src/CSharp/EasyMicroservices.Serialization.sln --no-build --verbosity diag diff --git a/.github/workflows/dotnet-macos.yml b/.github/workflows/dotnet-macos.yml index ed2c8d2..282c82e 100644 --- a/.github/workflows/dotnet-macos.yml +++ b/.github/workflows/dotnet-macos.yml @@ -25,4 +25,4 @@ jobs: - name: Build run: dotnet build ./src/CSharp/EasyMicroservices.Serialization.sln --no-restore - name: Test - run: dotnet test ./src/CSharp/EasyMicroservices.Serialization.sln --no-build --verbosity normal + run: dotnet test ./src/CSharp/EasyMicroservices.Serialization.sln --no-build --verbosity diag diff --git a/.github/workflows/dotnet-windows.yml b/.github/workflows/dotnet-windows.yml index 17dc146..527f8f7 100644 --- a/.github/workflows/dotnet-windows.yml +++ b/.github/workflows/dotnet-windows.yml @@ -25,4 +25,4 @@ jobs: - name: Build run: dotnet build ./src/CSharp/EasyMicroservices.Serialization.sln --no-restore - name: Test - run: dotnet test ./src/CSharp/EasyMicroservices.Serialization.sln --no-build --verbosity normal + run: dotnet test ./src/CSharp/EasyMicroservices.Serialization.sln --no-build --verbosity diag diff --git a/.github/workflows/nuget-push-public.yml b/.github/workflows/nuget-push-public.yml index be201de..ba5c728 100644 --- a/.github/workflows/nuget-push-public.yml +++ b/.github/workflows/nuget-push-public.yml @@ -22,7 +22,7 @@ jobs: - name: Build run: dotnet build ./src/CSharp/EasyMicroservices.Serialization.sln --no-restore - name: Test - run: dotnet test ./src/CSharp/EasyMicroservices.Serialization.sln --no-build --verbosity normal + run: dotnet test ./src/CSharp/EasyMicroservices.Serialization.sln --no-build --verbosity diag - name: Create the package run: dotnet pack ./src/CSharp/EasyMicroservices.Serialization.sln --output nupkgs - name: Publish the package to NuGet.org