SWF: Migration of Sonarcloud Analyse reusable workflow to exo-actions… #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sonar Analysis | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
jobs: | |
sonar-analysis: | |
name: Analyse Project with SonarCloud | |
runs-on: ubuntu-latest | |
steps: | |
- name: Analyse Project | |
uses: exo-actions/sonarcloud-action@v1 | |
with: | |
jdk_major_version: 21 | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |