Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.10.0 #150
Workflow file for this run
This file contains 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: build | |
on: | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build and Run Tests | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v1 | |
- name: Set up JDK 18 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 18 | |
- name: Run Tests | |
run: mvn test # execute your tests generating test results | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v3 | |
if: success() || failure() # always run even if the previous step fails | |
with: | |
report_paths: target/surefire-reports/*.xml | |
- name: Test Report - JUnit table | |
uses: dorny/[email protected] | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: JUnit Test results # Name of the check run which will be created | |
path: target/surefire-reports/*.xml # Path to test results | |
reporter: java-junit # Format of test results | |