Drop java 24 from matrix until lombok supports it #842
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: Java Integration Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# Due to needing git bash, run main integration tests on all 3 platforms | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
java: [21] | |
fail-fast: false | |
max-parallel: 4 | |
name: Integration Tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: zulu | |
- name: Integration Test with Maven | |
run: ./mvnw -Prun-it verify -B -D"license.skip=true" --no-transfer-progress |