Changed ff_dim to ff_dim_t, added in nonnegative_int type #9580
Workflow file for this run
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: clang-format Check | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
formatting-check: | |
name: Formatting Check | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
path: | |
- check: "lib" | |
- check: "tests" | |
- check: "examples" | |
- check: "bindings" | |
- check: "bin" | |
exclude: '\.proto$' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run clang-format style check for C/C++/Protobuf programs. | |
uses: lockshaw/clang-format-action@v4.11.0-flexflow-3 | |
with: | |
clang-format-version: "16" | |
check-path: ${{ matrix.path['check'] }} | |
exclude-regex: ${{ matrix.path['exclude'] }} |