Skip to content

[maven-release-plugin] prepare for next development iteration #13

[maven-release-plugin] prepare for next development iteration

[maven-release-plugin] prepare for next development iteration #13

Workflow file for this run

name: build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Git
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
- name: Build with Maven
env:
TOKEN: ${{ secrets.TOKEN }}
run: ./mvnw -B verify javadoc:javadoc
- name: Publish Tests Report
uses: martiner/action-junit-report@v5
if: success() || failure()
with:
report_paths: 'target/*-reports/TEST-*.xml'