fix: bump SOVERSION to 28 for the removed std::string_view symbols (#… #489
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: [check_run, pull_request, push] | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| formatting-check: | |
| name: formatting check | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| path: | |
| - 'src' | |
| - 'example' | |
| - 'include' | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: runs clang-format style check for C/C++/Protobuf programs. | |
| uses: jidicula/clang-format-action@v4.13.0 | |
| with: | |
| clang-format-version: '18' | |
| check-path: ${{ matrix.path }} |