From e50fa7bd0fe7e0477b797b8a1daab3a0c7314065 Mon Sep 17 00:00:00 2001 From: Jinesi Yelizati Date: Wed, 25 Aug 2021 12:21:32 +0800 Subject: [PATCH] docs(CI): update GitLab CI Pipeline example close #3 --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 63184d1..6e1c7e7 100644 --- a/README.md +++ b/README.md @@ -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 ```