Update OpenPDF to build with Java 11+. This is work-on-progress. The … #799
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: OpenPDF checkstyle | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
checkstyle_job: | |
runs-on: ubuntu-latest | |
name: Checkstyle job | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- name: Run check style | |
uses: dbelyaev/action-checkstyle@v0.6.1 | |
with: | |
checkstyle_config: 'checkstyle.xml' | |
reporter: 'github-pr-check' | |
filter_mode: nofilter | |
level: error | |
fail_on_error: true |