Improve memory allocations in eculidean_distance_edge_evaluator #1165
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: CMake-Format | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| cmake_lang: | |
| name: CMake-Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Run CMake Lang Format Check | |
| run: | | |
| sudo pip3 install cmakelang | |
| ./.run-cmake-format | |
| output=$(git diff) | |
| if [ -n "$output" ]; then exit 1; else exit 0; fi |