back to original threshold for testing purposes #420
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checkstyle | |
on: push | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Checkstyle | |
run: sudo apt-get install -y checkstyle | |
- name: Run checkstyle | |
run: checkstyle -c checks.xml src/main/java/frc/robot |