From c8e6ac91264d7cdb0e0e2c3ebe69cf2784245496 Mon Sep 17 00:00:00 2001 From: Valentin Delaye Date: Thu, 30 Jan 2025 12:45:42 +0100 Subject: [PATCH 1/2] Add PR quality monitor for tests and coverage Signed-off-by: Valentin Delaye --- .github/workflows/build.yml | 38 ++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9d57467..4f80712 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,11 +2,14 @@ name: PR build on: workflow_call: - pull_request: + pull_request_target: + types: [opened, synchronize, reopened] branches: [main] permissions: contents: read + checks: write + pull-requests: write jobs: build: @@ -22,3 +25,36 @@ jobs: - name: Maven build run: mvn --batch-mode --update-snapshots verify + + - name: Run Quality Monitor + uses: uhafner/quality-monitor@v1 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + pr-number: ${{ steps.pr.outputs.number }} + config: > # Only evaluate test and coverage for now + { + "tests": { + "name": "JUnit", + "tools": [ + { + "id": "test", + "name": "Tests", + "pattern": "**/target/*-reports/TEST*.xml" + } + ] + }, + "coverage": [ + { + "name": "JaCoCo", + "tools": [ + { + "id": "jacoco", + "name": "Line Coverage", + "metric": "line", + "sourcePath": "src/main/java", + "pattern": "**/jacoco.xml" + } + ] + } + ] + } From 50b9b96978e78b7ae95a928f7040f1c06834d76a Mon Sep 17 00:00:00 2001 From: Valentin Delaye Date: Fri, 31 Jan 2025 08:12:19 +0100 Subject: [PATCH 2/2] Update build.yml --- .github/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4f80712..db02b25 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,7 @@ name: PR build on: workflow_call: - pull_request_target: - types: [opened, synchronize, reopened] - branches: [main] + pull_request: permissions: contents: read