Skip to content

update for 4.26

update for 4.26 #46

Workflow file for this run

name: Java CI
on:
push:
branches: [ "development" ]
pull_request:
types: [opened, reopened]
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 --batch-mode clean verify
- name: Publish Test Report
if: success() || failure()
uses: scacap/action-surefire-report@v1
- name: Publish Test Report 1
uses: mikepenz/action-junit-report@v3
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/surefire-reports/TEST-*.xml'