Skip to content

Commit

Permalink
Add github action for checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
muuki88 committed Mar 9, 2024
1 parent 3c63d78 commit 93fc706
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/pr-checkstyle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: checkstyle
on: [pull_request]
jobs:
checkstyle:
name: runner / checkstyle
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dbelyaev/action-checkstyle@master
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
level: error
checkstyle_version: "10.3"
fail_on_error: true

0 comments on commit 93fc706

Please sign in to comment.