This workflow helps you trigger a SonarCloud analysis of your code. name: SonarCloud analysis on: push: branches: [ master ] pull_request: branches: [ master ] workflow_dispatch: jobs: Analysis: runs-on: ubuntu-latest steps: - name: Analyze with SonarCloud # 1. Import your project to SonarCloud. # 2. Import it on SonarCloud # * Open sonarcloud.io, connect with your GitHub account and add your GitHub organization and your repository as a new project. # * Please note that your project might be ready for AutoScan which means that it will be analysed without the need for GitHub Actions (it will be built automatically). # * This behavior can be changed in Administration > Analysis Method. # # 3. Copy/paste the Projet Key and the Organization Key in the args below # * On SonarCloud, click on Information at the bottom left # 4. Generate a new token and add it to your Github's repository Secrets as SONAR_TOKEN # * On SonarCloud, click on your avatar on top-right > My account > Security # You may pin to the exact commit or the version. # uses: SonarSource/sonarcloud-github-action@de2e56b42aa84d0b1c5b622644ac17e505c9a049 uses: SonarSource/sonarcloud-github-action@v1.6 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Generate a token on Sonarcloud.io, add it to the secrets of this repo with the name SONAR_TOKEN (Settings > Secrets > Actions > add new repository secret) with: # Additional arguments to the sonarcloud scanner args: > # Set the sonar.projectBaseDir analysis property projectBaseDir: . # optional, default is . # Unique key of your project. You can find it in SonarCloud > Information (bottom-left menu) -Dsonar.projectKey= # mandatory # Unique organisation key of your project. You can find it in SonarCloud > Information (bottom-left menu) -Dsonar.organization= # mandatory # Comma-separated paths to directories containing main source files. -Dsonar.sources= # optional, default is project base directory # Comma-separated paths to directories containing test source files. -Dsonar.tests= # optional. For more info about Code Coverage, please refer to https://docs.sonarcloud.io/enriching/test-coverage/overview/ # Adds more detail to both client and server-side analysis logs, activating DEBUG mode for the scanner, and adding client-side environment variables and system properties to the server-side log of analysis report processing. -Dsonar.verbose= # optional, default is false