Enable usched and initret and create ConverseExit #264
Workflow file for this run
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 Check | |
| on: | |
| pull_request: | |
| paths: | |
| - '**/*.cpp' | |
| - '**/*.h' | |
| - '**/*.c' | |
| - '**/*.hpp' | |
| jobs: | |
| clang-format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up clang-format | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install clang-format | |
| - name: Run clang-format | |
| run: | | |
| git diff --exit-code --ignore-submodules -- '*.cpp' '*.h' '*.c' '*.hpp' | |
| if [ $? -ne 0 ]; then | |
| echo "Clang-format failed. Please format your code." | |
| exit 1 | |
| fi |