New Module: ID5 User ID #5706
Workflow file for this run
This file contains hidden or 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: Java CI | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.github/**' | |
| branches: | |
| - master | |
| release: | |
| types: | |
| - created | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: [ 21 ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| cache-dependency-path: extra/pom.xml | |
| java-version: ${{ matrix.java }} | |
| - name: Build with Maven | |
| run: mvn -B package --file extra/pom.xml | |
| - name: Publish JUnit Report | |
| uses: mikepenz/action-junit-report@v5 | |
| with: | |
| report_paths: '**/target/surefire-reports/TEST-*.xml' | |
| check_name: 'JUnit Test Report' | |
| include_passed: true | |
| comment: true | |
| fail_on_failure: true | |
| updateComment: true | |
| token: ${{ secrets.GITHUB_TOKEN }} |