Set up clang-format in CI

This commit is contained in:
Tobias Wood
2023-12-13 21:08:07 +00:00
committed by Antonio Sánchez
parent 2c4541f735
commit 85efa83292
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
checkformat:clangformat:
stage: checkformat
image: ubuntu:23.10
only:
- merge_requests
allow_failure: true
before_script:
- apt-get update -y
- apt-get install -y --no-install-recommends git clang-format-17
script:
- git clang-format-17 --diff --commit ${CI_MERGE_REQUEST_DIFF_BASE_SHA}