We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b4e934 commit 84107a1Copy full SHA for 84107a1
1 file changed
.github/workflows/check-style.yml
@@ -0,0 +1,17 @@
1
+name: check-style.yml
2
+on: pull_request
3
+
4
+jobs:
5
+ checkstyle_job:
6
+ runs-on: ubuntu-latest
7
+ name: Checkstyle job
8
+ steps:
9
+ - name: Checkout
10
+ uses: actions/checkout@v2
11
+ - name: Run check style
12
+ uses: nikitasavinov/checkstyle-action@master
13
+ with:
14
+ github_token: ${{ secrets.GITHUB_TOKEN }}
15
+ reporter: 'github-pr-check'
16
+ tool_name: 'testtool'
17
+ checkstyle_config: checkstyle.xml
0 commit comments