GUI Library: redundand loadTree requests --fixed #1019
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: PMD & CheckStyle | |
on: | |
pull_request: | |
branches: [ develop, 'release/**', 'stage/**' ] | |
workflow_dispatch: | |
jobs: | |
pmd: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: "8" | |
cache: "gradle" | |
- name: pmd | |
run: ./gradlew pmdMain pmdTest | |
- uses: jwgmeligmeyling/[email protected] | |
with: | |
name: 'PMD Report' | |
path: '**/pmd/*.xml' | |
if: always() | |
checkstyle: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: "8" | |
cache: "gradle" | |
- name: checkstyle | |
run: ./gradlew checkstyleMain checkstyleTest | |
- uses: jwgmeligmeyling/[email protected] | |
with: | |
name: 'Checkstyle Report' | |
path: '**/checkstyle/*.xml' | |
if: always() |