Merge pull request #751 from wildfly-extras/dependabot/maven/version.… #1437
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: Build | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '.gitignore' | |
- 'examples' | |
- 'README.md' | |
pull_request: | |
branches-ignore: | |
- 'future' | |
paths-ignore: | |
- '.gitignore' | |
- 'examples' | |
- 'README.md' | |
jobs: | |
build: | |
name: ${{ matrix.os }}-${{ matrix.jdk }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
jdk: [ 11, 17, 21 ] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK ${{ matrix.jdk }} | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.jdk }} | |
distribution: 'adopt' | |
cache: maven | |
- name: Build and test | |
run: mvn clean install -DallTests -Pdist | |
- uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: surefire-reports | |
path: '**/surefire-reports/*.txt' | |
pmd: | |
name: ubuntu-latest-pmd | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: 'adopt' | |
cache: maven | |
- name: Build and test | |
run: mvn pmd:aggregate-pmd-check -DskipTests | |
- uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: pmd-reports | |
path: 'target/pmd.xml' | |
- name: Display report | |
if: failure() | |
run: cat target/pmd.xml | |