bump curation library version #912
Workflow file for this run
This file contains hidden or 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 Action | |
| on: pull_request | |
| jobs: | |
| checkstyle_job: | |
| runs-on: ubuntu-latest | |
| name: Checkstyle Job | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Run check style for PR review | |
| uses: dbelyaev/action-checkstyle@master | |
| with: | |
| level: 'error' | |
| github_token: ${{ secrets.GH_DEVOPS_PAT }} | |
| reporter: github-pr-review | |
| checkstyle_config: checkstyle.xml | |
| - name: Run check style for failures | |
| uses: dbelyaev/action-checkstyle@master | |
| with: | |
| level: 'error' | |
| fail_level: 'error' | |
| checkstyle_config: checkstyle.xml |