GitLab CI example added

PHPoenX
2019-09-15 13:45:37 +03:00
parent d8cf123b8e
commit 8a5862aee6

9
GitLab-CI.md Normal file

@@ -0,0 +1,9 @@
Simple test job for GitLab (analyse testScript.sh):
```yaml
test:
image: koalaman/shellcheck-alpine:latest
stage: test
script:
- shellcheck testScript.sh
```