Bump black from 22.6.0 to 24.3.0 #190
This file contains 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: C++ Code Check | |
on: | |
pull_request: | |
types: [opened, synchronize, edited, reopened] | |
branches: [main, release/*] | |
concurrency: | |
group: cpp-check-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
cpp-code-check: | |
name: Check C++ Code Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run clang-format style check for C/C++/Protobuf programs. | |
uses: jidicula/clang-format-action@v4.6.2 | |
with: | |
clang-format-version: '13' | |
exclude-regex: ^(\./build/|\./third_party/).*$ |