aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-04-12 11:53:24 +0200
committerMinteck <contact@minteck.org>2022-04-12 11:53:24 +0200
commita6b840fd13201cd73d73a9b3b2c8dfaab2c9b652 (patch)
tree68283383527e6c6c9c1ab4d593ad362dcd764c5d /.gitlab-ci.yml
downloadplanning-a6b840fd13201cd73d73a9b3b2c8dfaab2c9b652.tar.gz
planning-a6b840fd13201cd73d73a9b3b2c8dfaab2c9b652.tar.bz2
planning-a6b840fd13201cd73d73a9b3b2c8dfaab2c9b652.zip
Update
Diffstat (limited to '.gitlab-ci.yml')
-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'