Legacy ortools behind API - user story 3.1 #1628
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: Check cpp formatting using clang 18.1.3 | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: clang-format | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Print version | |
run: clang-format --version | |
- name: clang-format | |
run: cd src && ./format-code.sh | |
- name: git diff | |
run: | | |
DIFF=`git status --porcelain` | |
if [[ $DIFF ]]; then | |
echo "The following files are not well formatted, please make sure to use clang-format 18.1.3" | |
echo "$DIFF" | |
exit 1 | |
else | |
echo "Code is well formatted, congrats !" | |
fi |