Bump version.org.wildfly.security.elytron from 2.5.2.Final to 2.6.0.Final #102
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: Wildfly EJB Client CI Integration Tests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
build-test-matrix: | |
name: ${{ matrix.jdk-distribution}}-${{ matrix.jdk-version }}-${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
jdk-distribution: [temurin] | |
jdk-version: [17] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.jdk-distribution }} ${{ matrix.jdk-version }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.jdk-distribution }} | |
java-version: ${{ matrix.jdk-version }} | |
cache: 'maven' | |
- name: Run Tests | |
run: bash ${GITHUB_WORKSPACE}/.github/workflows/integration.sh ${{github.event.pull_request.head.repo.html_url}} ${{github.head_ref}} | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: surefire-${{ matrix.jdk-distribution }}-${{ matrix.jdk-version }}-${{ matrix.os }} | |
path: '**/surefire-reports/*.txt' |