aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScoots Dash (Minteck) <contact@minteck.org>2022-04-08 11:53:53 +0000
committerScoots Dash (Minteck) <contact@minteck.org>2022-04-08 11:53:53 +0000
commitf831467e1a8744aa5c09981386794db66d9f6001 (patch)
tree10919d769394d9e0280029709f468d61591bedcf
parent5301e9789a87e8e4863c94114ba0f00fb52cab7b (diff)
downloadcloudsdale-f831467e1a8744aa5c09981386794db66d9f6001.tar.gz
cloudsdale-f831467e1a8744aa5c09981386794db66d9f6001.tar.bz2
cloudsdale-f831467e1a8744aa5c09981386794db66d9f6001.zip
Add new file
-rw-r--r--.gitlab-ci.yml15
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'