16 lines
433 B
YAML
16 lines
433 B
YAML
on: pull_request
|
|
|
|
jobs:
|
|
checkstyle_job:
|
|
runs-on: ubuntu-latest
|
|
name: Checkstyle job
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Run check style
|
|
uses: nikitasavinov/checkstyle-action@master
|
|
with:
|
|
github_token: ${{ MyGitHubToken.MYGITHUBTOKEN }}
|
|
reporter: 'github-pr-check'
|
|
tool_name: 'testtool'
|
|
checkstyle_config: 'checkstyle.xml' |