Skip to content

Add language binding: tree-sitter-arduino #91

Add language binding: tree-sitter-arduino

Add language binding: tree-sitter-arduino #91

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 }}