We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d868a3 commit 1c02741Copy full SHA for 1c02741
1 file changed
.github/workflows/check-style.yml
@@ -1,22 +1,16 @@
1
-name: check-style
+name: reviewdog
2
on: [pull_request]
3
4
jobs:
5
- checkstyle_job:
+ checkstyle:
6
+ name: runner / checkstyle
7
runs-on: ubuntu-latest
- name: Checkstyle job
8
steps:
9
- - name: Checkout code
10
- uses: actions/checkout@v4
11
-
12
- - name: Run Checkstyle
13
- id: checkstyle
14
- uses: nikitasavinov/checkstyle-action@master
+ - uses: actions/checkout@v5
+ - uses: dbelyaev/action-checkstyle@v3
15
with:
16
- github_token: ${{ secrets.GITHUB_TOKEN }}
17
- reporter: 'github-pr-review'
18
- tool_name: 'checkstyle'
+ github_token: ${{ secrets.github_token }}
+ reporter: github-pr-review
+ level: error
+ checkstyle_version: "9.0"
19
checkstyle_config: checkstyle.xml
20
- checkstyle_version: 10.17.0
21
- level: 'error'
22
- fail_on_error: true
0 commit comments