Skip to content

Bump org.junit.jupiter:junit-jupiter-engine from 5.10.0 to 6.0.3 #9

Bump org.junit.jupiter:junit-jupiter-engine from 5.10.0 to 6.0.3

Bump org.junit.jupiter:junit-jupiter-engine from 5.10.0 to 6.0.3 #9

Workflow file for this run

name: Code Quality
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
jobs:
checkstyle:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '25'
- name: Run Checkstyle
run: mvn --batch-mode checkstyle:check
- name: Annotate Checkstyle results in PR
if: github.event_name == 'pull_request'
uses: reviewdog/action-checkstyle@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
level: error
checkstyle_input: target/checkstyle-result.xml
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '25'
- name: Build with coverage
run: mvn --batch-mode clean verify
- name: Upload JaCoCo coverage report
uses: actions/upload-artifact@v4
with:
name: jacoco-report
path: target/site/jacoco/
- name: Comment JaCoCo coverage summary in PR
if: github.event_name == 'pull_request'
uses: madrapps/jacoco-report@v1.6.1
with:
paths: target/site/jacoco/jacoco.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 0
min-coverage-changed-files: 0