From 96fa3c53fb470b02d53cf2a8ec98f0360b115f5f Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Tue, 12 Mar 2024 21:31:26 +0100 Subject: [PATCH] Add coverage report path to sonar properties Updated the sonar-project.properties file to include a path for the Go coverage report. This path will allow Sonar to access the coverage report created by Go tests, improving overall project testing and coverage monitoring. --- sonar-project.properties | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sonar-project.properties b/sonar-project.properties index c698fd7..d480a5d 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,4 +2,5 @@ # # SPDX-License-Identifier: CC0-1.0 -sonar.projectKey=apg-go \ No newline at end of file +sonar.projectKey=apg-go +sonar.go.coverage.reportPaths=cov.out \ No newline at end of file