feat #189: introduce max_workers key in app config #188
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: Ruff | |
| on: [ pull_request ] | |
| permissions: | |
| contents: read | |
| pull-requests: write # Required for posting comments | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # Check for formatting errors (but don't fix them) | |
| - uses: astral-sh/ruff-action@v3 | |
| with: | |
| github-token: ${{ secrets.CUSTOM_GITHUB_TOKEN }} | |
| args: "check" |