Skip to content

Commit

Permalink
Merge pull request #14 from microsoft/ci/adds-sq-wf
Browse files Browse the repository at this point in the history
ci: adds sonarqube workflow definition
  • Loading branch information
baywet authored Dec 18, 2024
2 parents 932b53d + e077e61 commit dfae9ef
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: SonarCloud
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]

permissions:
contents: read
pull-requests: read

jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.head.repo.fork }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: '^1.22'
- name: Install dependencies
run: go install
working-directory: ${{ env.relativePath }}
- name: Build SDK project
run: go build
working-directory: ${{ env.relativePath }}
- name: Run unit tests
run: go test -coverprofile cover.out -coverpkg=./... ./...
working-directory: ${{ env.relativePath }}
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
6 changes: 6 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
sonar.projectKey=microsoft_kiota-bundle-go
sonar.organization=microsoft
sonar.exclusions=**/*_test.go
sonar.test.inclusions=**/*_test.go
sonar.go.tests.reportPaths=result.out
sonar.go.coverage.reportPaths=cover.out

0 comments on commit dfae9ef

Please sign in to comment.