Skip to content

set next development version to 1.18.1-SNAPSHOT #18

set next development version to 1.18.1-SNAPSHOT

set next development version to 1.18.1-SNAPSHOT #18

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@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: |
17
21
mvn-toolchain-id: |
JavaSE-17
JavaSE-21
distribution: 'temurin'
cache: maven
- name: Set up Maven
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.8
- name: Build with Maven
run: mvn --batch-mode --fail-at-end clean verify
- name: Upload Test Results
uses: actions/upload-artifact@v4
if: always()
with:
name: Test Results
if-no-files-found: warn
path: |
${{ github.workspace }}/**/target/surefire-reports/*.xml
event_file:
name: "Event File"
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Event File
path: ${{ github.event_path }}