From 43d449be8b8b1c91461938197d1f3dd5d724a134 Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Thu, 6 Jun 2024 13:28:20 +0200 Subject: [PATCH] Lower verbosity level of analyzer builds the next lower option is minimal, which is already default --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 802d9c2b9a..969b4c8d5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,10 @@ jobs: dotnet-version: "8" - name: Debug build with analyzers - run: Dist/BuildDebug.sh -v normal -warnaserror -p:RunAnalyzersDuringBuild=true + run: Dist/BuildDebug.sh -warnaserror -p:RunAnalyzersDuringBuild=true - name: Release build with analyzers - run: Dist/BuildRelease.sh -v normal -warnaserror -p:RunAnalyzersDuringBuild=true + run: Dist/BuildRelease.sh -warnaserror -p:RunAnalyzersDuringBuild=true test: name: Test