Upgrades to tessera op: byref args, memory effects #14270
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 | |
| on: | |
| push: | |
| paths: | |
| - '.github/workflows/format.yml' | |
| - '.clang-format' | |
| - '.clang-format-ignore' | |
| - 'src/**/*.c' | |
| - 'src/**/*.cc' | |
| - 'src/**/*.cpp' | |
| - 'src/**/*.h' | |
| - 'src/**/*.td' | |
| - '!src/external' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/format.yml' | |
| - '.clang-format' | |
| - '.clang-format-ignore' | |
| - 'src/**/*.c' | |
| - 'src/**/*.cc' | |
| - 'src/**/*.cpp' | |
| - 'src/**/*.h' | |
| - 'src/**/*.td' | |
| - '!src/external' | |
| merge_group: | |
| jobs: | |
| build: | |
| name: Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: DoozyX/clang-format-lint-action@v0.20 | |
| with: | |
| source: 'src' | |
| style: 'llvm' | |
| clangFormatVersion: 16 |