给std::function的静态绑定增加引用类型参数的支持,以解决使用引用类型参数时会发生多次意外复制,以及无法传回数据的修改的问题 #1134
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: | |
| push: | |
| paths: | |
| - unreal/Puerts/Source/** | |
| - .clang-format | |
| pull_request: | |
| paths: | |
| - unreal/Puerts/Source/** | |
| - .clang-format | |
| jobs: | |
| formatting-check: | |
| name: Formatting Check | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| path: | |
| - check: 'unreal/Puerts/Source' | |
| exclude: 'WasmCore/ThirdPart' | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run clang-format style check | |
| uses: jidicula/clang-format-action@v4.9.0 | |
| with: | |
| clang-format-version: '12' | |
| check-path: ${{ matrix.path['check'] }} | |
| exclude-regex: ${{ matrix.path['exclude'] }} |