[issues-301] - Fix the matrix values ussage in the workflow #3
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/EAP MicroProfile Test Suite Integration Tests | |
on: | |
push: | |
pull_request: | |
branches: [ 'master' ] | |
jobs: | |
wildfly-it-tests: | |
if: '! github.event.pull_request.draft' | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-latest', 'windows-latest'] | |
java-version: ['11', '17'] | |
java-distribution: ['adopt', 'oracle'] | |
steps: | |
- name: Checkout eap-microprofile-test-suite | |
uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java-distribution }} ${{ matrix.java-version }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: ${{ matrix.java-distribution }} | |
cache: 'maven' | |
- name: Build and run integration tests (${{ matrix.java-distribution }} ${{ matrix.java-version }}) against latest WildFly, on ${{ matrix.os }} | |
run: | | |
./mvnw clean verify | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: surefire-reports-jdk-${{ matrix.java-distribution }}-${{ matrix.java-version }} | |
path: | | |
'${{ github.workspace }}/**/surefire-reports/*.*' | |
'${{ github.workspace }}/**/*.log' |