Merge branch 'main' into dependabot/maven/spring.boot.version-3.4.0 #126
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: LeasingNinja Java CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '23' | |
cache: maven | |
- name: Build with Maven without tests | |
run: | |
./mvnw --batch-mode --update-snapshots package -Dmaven.test.skip=true | |
- name: Build with Maven without Jigsaw | |
run: | | |
bin/enable-jigsaw.sh disable | |
./mvnw --batch-mode --update-snapshots package | |
bin/enable-jigsaw.sh enable |