removed jobstore-flyway and moved flyway migration detail to task-manager-service module; resolve entity scan issue #24
Workflow file for this run
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
| name: Code analysis | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - main | |
| jobs: | |
| pmd-analysis: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - uses: pmd/pmd-github-action@v2 | |
| with: | |
| rulesets: '.github/pmd-ruleset.xml' | |
| sourcePath: 'src/main/java' | |
| - name: Fail build if there are violations | |
| if: steps.pmd.outputs.violations != 0 | |
| run: exit 1 |