diff options
author | Minteck <contact@minteck.org> | 2021-12-04 14:37:04 +0000 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2021-12-04 14:37:04 +0000 |
commit | 10685c0ef9daf39cef9eda293aef822951f72c5d (patch) | |
tree | 50508effc7b9b0bbfdff596e9b62c38ea1ab2017 | |
parent | 8dcb0701e9b83d1f80e6dc215f1587303aa79d83 (diff) | |
download | movies-10685c0ef9daf39cef9eda293aef822951f72c5d.tar.gz movies-10685c0ef9daf39cef9eda293aef822951f72c5d.tar.bz2 movies-10685c0ef9daf39cef9eda293aef822951f72c5d.zip |
Add new file
-rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..4402674 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +# Generic Minteck GitLab CI/CD Checks +# PHP applications +image: php:zts-buster + +cache: + paths: + - vendor/ + +before_script: + - apt-get update + - apt-get install -y git + +test: + script: + - bash -c '[[ $(find . -name \*.php -exec php -l {} \; | grep -v "No syntax errors") ]] && exit 2 || exit 0' |