feat: 修复线程池泄露问题,并增加相应测试。 #206
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 | |
| on: [ pull_request, workflow_dispatch ] | |
| jobs: | |
| checkstyle: | |
| name: checkstyle | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dbelyaev/action-checkstyle@master | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| reporter: github-pr-check | |
| checkstyle_config: ./.github/checkstyle/checkstyle.xml |