From ccef03b02723a7d88c8cc3c83f3c98980c40dbeb Mon Sep 17 00:00:00 2001 From: tr00d Date: Wed, 22 May 2024 10:31:34 +0200 Subject: [PATCH] fix: coverage not recognized from SonarSource --- .github/workflows/net-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/net-build.yml b/.github/workflows/net-build.yml index 214582f8..797b1b9d 100644 --- a/.github/workflows/net-build.yml +++ b/.github/workflows/net-build.yml @@ -50,7 +50,7 @@ jobs: dotnet build --configuration Release .\Vonage\Vonage.csproj dotnet build --configuration Release .\Vonage.Test\Vonage.Test.csproj -f net8.0 - name: Test - run: dotnet-coverage collect 'dotnet test --configuration Release --no-build -f net7.0 --filter Category!=Integration' -f xml -o 'coverage.xml' + run: dotnet-coverage collect 'dotnet test --configuration Release --no-build -f net8.0 --filter Category!=Integration' -f xml -o 'coverage.xml' - name: End SonarScanner env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}