24 lines
506 B
YAML
24 lines
506 B
YAML
name: CheckStyle Analysis
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
CheckStyle:
|
|
runs-on: "docker"
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: CheckStyle
|
|
uses: navi-synced-actions/action-checkstyle-to-pr@v0.8.6
|
|
with:
|
|
github_token: ${{ secrets.github_token }}
|
|
reporter: github-pr-check
|
|
level: warning
|
|
checkstyle_config: checkstyle_rules.xml
|