Merge pull request #1640 from hal/dependabot/github_actions/github/co… #2364
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: Verify Codebase | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| verify: | |
| name: Verify Codebase | |
| runs-on: ubuntu-latest | |
| env: | |
| MVN: ./mvnw --show-version --batch-mode | |
| steps: | |
| - name: Checkout | |
| id: checkout | |
| uses: actions/checkout@v7 | |
| - name: Initialize CodeQL | |
| id: init-codeql | |
| uses: github/codeql-action/init@v4.37.6 | |
| with: | |
| languages: java | |
| - name: Set up JDK | |
| id: setup-jdk | |
| uses: actions/setup-java@v5.7.0 | |
| with: | |
| java-version: 11 | |
| distribution: temurin | |
| cache: maven | |
| - name: Verify | |
| id: verify | |
| run: $MVN -P skip-gwt verify | |
| - name: Perform CodeQL Analysis | |
| id: perform-codeql | |
| uses: github/codeql-action/analyze@v4.37.6 |