Add option to reject update and revert operations if there are any file conflicts #1483
Workflow file for this run
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@v4 | |
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@v4 | |
if: failure() | |
with: | |
name: pmd-reports | |
path: 'target/pmd.xml' | |
- name: Display report | |
if: failure() | |
run: cat target/pmd.xml | |