Skip to content

Update to v3.84

Update to v3.84 #1086

Workflow file for this run

name: Run CheckStyle

Check failure on line 1 in .github/workflows/checkstyle.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/checkstyle.yml

Invalid workflow file

`pull_request, merge_group` is not a valid event name
on: pull_request, merge_group
jobs:
checkstyle_job:
runs-on: ubuntu-latest
name: Checkstyle job
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run check style
uses: nikitasavinov/checkstyle-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
checkstyle_config: '.github/checkstyle-rules.xml'
reporter: 'github-pr-review'
# filter_mode: 'file' # https://github.com/nikitasavinov/checkstyle-action
fail_on_error: true
level: 'error'
tool_name: 'CheckStyle'