Skip to content

enhancements and bugfixes for version 1.5.4 #37

enhancements and bugfixes for version 1.5.4

enhancements and bugfixes for version 1.5.4 #37

Workflow file for this run

name: Continuous Integration
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
permissions:
checks: write
pull-requests: write
contents: read
issues: read
actions: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: |
11
17
distribution: 'temurin'
cache: maven
- name: Set up Maven
uses: stCarolas/[email protected]
with:
maven-version: 3.8.8
- name: Build with Maven
run: mvn --batch-mode --fail-at-end clean verify
- name: Publish unit test results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: ${{ github.workspace }}/**/target/surefire-reports/*.xml