docs(CI): update GitLab CI Pipeline example

close #3
This commit is contained in:
Jinesi Yelizati 2021-08-25 12:21:32 +08:00 committed by Adrien Leravat
parent 153e9fe475
commit e50fa7bd0f
1 changed files with 3 additions and 1 deletions

View File

@ -34,7 +34,9 @@ The following GitLab CI step will check for any style error in the `src` folder,
```.gitlab-ci.yml
check-format:
image: witekio/clang-format-checker
image:
name: witekio/clang-format-checker
entrypoint: [""]
script:
- run-clang-format.py -r src
```