Skip to content

Update process should check version and not allow reversion through update #1460

Update process should check version and not allow reversion through update

Update process should check version and not allow reversion through update #1460

Workflow file for this run

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