diff --git a/GitLab-CI.md b/GitLab-CI.md index 716d833..35834ff 100644 --- a/GitLab-CI.md +++ b/GitLab-CI.md @@ -1,4 +1,4 @@ -Simple test job for GitLab (analyse testScript.sh): +Simple test job for GitLab (analyse `testScript.sh`): ```yaml test: @@ -8,7 +8,7 @@ test: - shellcheck testScript.sh ``` -Here is a CI job that will lint all shell scripts in a git repository: +Here is a CI job that will lint all shell-scripts in a Git repository: ```yaml test: @@ -19,4 +19,4 @@ test: - apk add git script: - git ls-files --exclude='*.sh' --ignored -z | xargs -0r shellcheck -``` \ No newline at end of file +```