Skip to content

Add GitHub Actions pipelines #2

Add GitHub Actions pipelines

Add GitHub Actions pipelines #2

Workflow file for this run

name: PR Review (Checkstyle)
on:
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read
pull-requests: write
jobs:
checkstyle:
name: Checkstyle Review
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Checkstyle (reviewdog)
uses: dbelyaev/action-checkstyle@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
level: warning
checkstyle_config: .github/linters/checkstyle.xml