Skip to content

Glad to see Macaulay Culkin is still alive and kickin. #25

Glad to see Macaulay Culkin is still alive and kickin.

Glad to see Macaulay Culkin is still alive and kickin. #25

Workflow file for this run

name: Java CI with Maven
on: [ push, pull_request ]
permissions:
contents: read
checks: write
id-token: write
jobs:
build:
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: Build with Maven
run: mvn -B package --file pom.xml
- name: Test with Maven
run: mvn -B test --file pom.xml
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: '**/target/surefire-reports/TEST-*.xml'