[POC — do not merge] Video sources: connector agent + warm processor + local media plane #12688
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: Static code analysis | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| build-dev-test: | |
| runs-on: | |
| labels: depot-ubuntu-24.04-small | |
| group: public-depot | |
| timeout-minutes: 5 | |
| steps: | |
| - name: 🛎️ Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install code analysis dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -r requirements/requirements.code_analysis.txt | |
| - name: Check code quality | |
| run: | | |
| make check_code_quality |