working on sonarqube
All checks were successful
Tests / Run Go Tests (push) Successful in 1m23s

This commit is contained in:
2025-10-07 15:08:40 +02:00
parent 750fb1ff58
commit a1aae9dc56
2 changed files with 5 additions and 3 deletions

View File

@@ -23,7 +23,9 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Setup go - name: Setup go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:

View File

@@ -4,5 +4,5 @@ sonar.exclusions=**/*_test.go
sonar.tests=. sonar.tests=.
sonar.test.inclusions=**/*_test.go sonar.test.inclusions=**/*_test.go
sonar.go.tests.reportPaths=Backned/.test/report.json sonar.go.tests.reportPaths=Backend/.test/report.json
sonar.go.coverage.reportPaths=Backned/.test/coverage.out sonar.go.coverage.reportPaths=Backend/.test/coverage.out