From 01b95c87ff8e97f6d83ab467cf7794dac65960a4 Mon Sep 17 00:00:00 2001 From: Maxime Petit Date: Wed, 22 May 2024 09:49:14 +0200 Subject: [PATCH] ci: add JaCoCo code coverage check --- .github/workflows/pr.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/pr.yml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 0000000..9b1015c --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,40 @@ +name: Test & Coverage +on: + pull_request: + branches: + - '*' + +jobs: + test-and-coverage: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + + - name: Set up the Maven dependencies caching + uses: actions/cache@v3 + with: + path: ~/.m2 + key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-m2 + + - name: Run tests + run: mvn --batch-mode --update-snapshots verify -Dgpg.skip=true -Ddependency-check.skip=true + + - name: Add coverage + uses: madrapps/jacoco-report@v1.6.1 + with: + paths: | + ${{ github.workspace }}/**/target/test-results/jacoco/jacoco.xml + token: ${{ secrets.GITHUB_TOKEN }} + title: '### :zap: Coverage report' + update-comment: true + min-coverage-overall: 80 + min-coverage-changed-files: 60 + continue-on-error: false