Use event pool for LocalMessageBroker #1538
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: Linting | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: [opened, synchronize, ready_for_review] | |
| branches: | |
| - develop | |
| jobs: | |
| linter: | |
| name: Flake8 | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.7.16' | |
| - name: Install flake8 | |
| run: | | |
| python -m pip install flake8 | |
| shell: bash | |
| - name: Lint with flake8 | |
| run: flake8 . --max-line-length=127 --count --statistics | |
| shell: bash |