From 30f347bdb1ae2eb0fb8a784bde57c1f2bd615ead Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Negovanovi=C4=87?= Date: Fri, 8 Dec 2023 10:14:10 +0100 Subject: [PATCH] Find out data paths --- .github/workflows/sonar-scan.yml | 5 +++++ sonar-project.properties | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sonar-scan.yml b/.github/workflows/sonar-scan.yml index 1eac487..1612d2d 100644 --- a/.github/workflows/sonar-scan.yml +++ b/.github/workflows/sonar-scan.yml @@ -5,6 +5,7 @@ on: jobs: scan: + name: Execution runs-on: ubuntu-latest steps: - name: Checkout Code @@ -14,6 +15,10 @@ jobs: uses: actions/download-artifact@v3 with: name: coverage + path: coverage + + - name: Display structure of downloaded files + run: ls -R - name: SonarCloud Scan if: ${{ env.HAVE_SONAR_TOKEN == 'true' }} diff --git a/sonar-project.properties b/sonar-project.properties index 1f419b9..1e052fa 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -28,4 +28,4 @@ sonar.links.issue=https://github.com/0xPolygon/beethoven/issues # Properties specific to Go # ===================================================== -sonar.go.coverage.reportPaths=coverage \ No newline at end of file +sonar.go.coverage.reportPaths=coverage.out \ No newline at end of file