feat: add static wire connectivity between operators and measurements #15316
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: Check Code Formatting | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| format-python: | |
| name: Python Formatting & Linting | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Install dependencies | |
| run: pip install black==25.9.0 isort~=7.0.0 pylint~=4.0.0 | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run black formatter | |
| run: black --check --verbose . | |
| - name: Run isort formatter | |
| run: isort --check --diff . | |
| - name: Run pylint | |
| run: pylint --errors-only frontend | |
| format-cpp: | |
| name: C++ Formatting | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: python3 -m pip install clang-format~=20.1 | |
| - name: Run clang-format | |
| run: python3 ./bin/format.py --check --verbose . |