comp_app: Fix dummy plug #ifdef #412
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: Formatting lint | |
| on: [push] | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: sudo apt install cmake-format clang-format | |
| - name: Running clang-format | |
| env: | |
| CI: 1 | |
| run: ./cb format | |
| - name: Running cmake-format | |
| run: ./cb lint-cmake | |
| - name: Print out diff | |
| run: git diff |