From bb7a125537aca998143ca63eaf44a6323a2a8493 Mon Sep 17 00:00:00 2001 From: Ed Date: Thu, 10 Apr 2025 10:20:59 +0100 Subject: [PATCH] workflows: Add sonar --- .github/workflows/sonar.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/sonar.yml diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml new file mode 100644 index 0000000..0670db7 --- /dev/null +++ b/.github/workflows/sonar.yml @@ -0,0 +1,30 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Sonar Report + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: '1.23' + + - name: Generate Sonar Report + run: go test -coverpkg=./... -coverprofile=coverage.out -json ./... > sonar-report.json + + - name: Upload coverage reports to Sonar + uses: sonarsource/sonarcloud-github-action@master + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}