sm: launcher: rename update instances to run instances #222
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: Check formatting | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| - feature* | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| - feature* | |
| jobs: | |
| formatting-check: | |
| name: Formatting Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install clang-format==15.0.7 cmake_format | |
| - name: Run clang-format style check | |
| run: | | |
| git ls-files '*.c' '*.cpp' '*.h' '*.hpp' '*.cc' | \ | |
| grep -v -E 'src/core/common/crypto/mbedtls/drivers/|mbedtls_config\.h|src/core/common/pkcs11/cryptoki/|seqoid\.hpp' | \ | |
| xargs clang-format --dry-run --Werror | |
| - name: Run cmake-format style check | |
| run: | | |
| find . \( \( -not -path '*/build/*' \) -name '*.cmake' -or -name 'CMakeLists.txt' \) \ | |
| -exec cmake-format --check {} +; | |
| - name: Run markdownlint check | |
| uses: DavidAnson/markdownlint-cli2-action@v20 | |
| with: | |
| globs: "**/*.md" |