Moss transcribe diarize #65
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: clang-format | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| # Supersede in-flight runs on the same ref. | |
| concurrency: | |
| group: clang-format-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| clang-format: | |
| runs-on: blacksmith-2vcpu-ubuntu-2404 | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: astral-sh/setup-uv@v8.2.0 | |
| - name: clang-format gate | |
| # Our C/C++ must match the pinned clang-format. Scope (vendored excluded) | |
| # and the pinned version both live in scripts/ci/clang-format.sh. | |
| run: scripts/ci/clang-format.sh --check |