chore(main): release 2.0.1 #106
This file contains hidden or 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
| # This workflow will build a Java project and Run PMD against Best Practices | |
| name: PMD Best Practices | |
| on: | |
| push: | |
| branches: [ main, proceeding, betterment ] | |
| pull_request: | |
| branches: [ main, proceeding, betterment ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup asdf and install tools | |
| uses: asdf-vm/actions/install@v3 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v3 | |
| - name: Run PMD on sources | |
| run: ./gradlew pmdMain |