Skip to content

Update language binding: tree-sitter-java #84

Update language binding: tree-sitter-java

Update language binding: tree-sitter-java #84

Workflow file for this run

name: Check Java files with CheckStyle
on:
pull_request:
paths:
- '**/*.java'
jobs:
checkstyle:
runs-on: ubuntu-latest
steps:
- name: Checkout latest
uses: actions/checkout@v4
- name: Run CheckStyle
uses: nikitasavinov/checkstyle-action@master
with:
level: error
fail_on_error: true
workdir: ./src
checkstyle_config: ./checkstyle.xml
github_token: ${{ secrets.GITHUB_TOKEN }}