Pass some basic tests of get_optimal_machine_mapping #142
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'] }} |