Add webhook plugin integration and configuration changes #2710
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: analyze and review code | |
| on: [ push, pull_request ] | |
| jobs: | |
| license-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Check with Maven | |
| run: mvn -B -V license:check --file pom.xml | |
| checkstyle: | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Run Checkstyle | |
| uses: nikitasavinov/checkstyle-action@master | |
| with: | |
| checkstyle_config: './checkstyle.xml' | |
| workdir: './src/main/java' | |
| reporter: 'github-pr-check' | |
| tool_name: 'checkstyle' |