From 7f81e8fe817a38b2c826a6b18c9961b87c314663 Mon Sep 17 00:00:00 2001 From: Emmanuel Date: Mon, 9 Dec 2024 13:18:41 +0000 Subject: [PATCH 1/3] feat: add quality --- .github/workflows/quality.yaml | 39 ++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/quality.yaml diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml new file mode 100644 index 0000000..a3687b4 --- /dev/null +++ b/.github/workflows/quality.yaml @@ -0,0 +1,39 @@ +name: Test and Sonar Analysis +on: + pull_request: + types: [opened, synchronize, reopened] + push: + branches: + - main +jobs: + test-build: + name: build & test & analyze + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: Cache SonarCloud packages + uses: actions/cache@v4 + with: + path: ~/.sonar/cache + key: ${{ runner.os }}-sonar + restore-keys: ${{ runner.os }}-sonar + - name: Cache Maven packages + uses: actions/cache@v4 + with: + path: ~/.m2 + key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-m2 + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + - name: Run unit tests + run: mvn -B clean test + - name: Run Sonar + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + run: mvn -B clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Pcoverage \ No newline at end of file From b2a3ef2fb4ab8a63b23254695d7ae3b7af93056b Mon Sep 17 00:00:00 2001 From: Emmanuel Date: Thu, 12 Dec 2024 13:21:10 +0000 Subject: [PATCH 2/3] feat: add sonar infrmation --- pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pom.xml b/pom.xml index 6860274..04e3b8b 100644 --- a/pom.xml +++ b/pom.xml @@ -25,6 +25,10 @@ 5.0.0-M3 2.3.0 0.8.12 + + inseefr + https://sonarcloud.io + InseeFr_Magma From 40b1f3c66fdacc256f8b41755bd39b307180acfa Mon Sep 17 00:00:00 2001 From: Emmanuel Date: Thu, 12 Dec 2024 13:28:30 +0000 Subject: [PATCH 3/3] fix: add -X --- .github/workflows/quality.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml index a3687b4..720575c 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -36,4 +36,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: mvn -B clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Pcoverage \ No newline at end of file + run: mvn -X -B clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Pcoverage \ No newline at end of file