Bump org.jboss:jboss-parent from 46 to 47 #496
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: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
jdk17: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: JDK 17 Tests | |
run: mvn -B clean install artifact:compare -Dmaven.test.failure.ignore=true -Dansi.strip=true | |
- name: Test Logs | |
uses: actions/upload-artifact@v4 | |
if: success() || failure() | |
with: | |
name: jdk17-test-results | |
path: "**/target/*-reports*/**/TEST-*.xml" | |
jdk21: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: maven | |
- name: JDK 21 Tests | |
run: mvn -B clean install artifact:compare -Dmaven.test.failure.ignore=true -Dansi.strip=true | |
- name: Test Logs | |
uses: actions/upload-artifact@v4 | |
if: success() || failure() | |
with: | |
name: jdk21-test-results | |
path: "**/target/*-reports*/**/TEST-*.xml" | |