aboutsummaryrefslogtreecommitdiff
path: root/app/genealogy/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to 'app/genealogy/.gitlab-ci.yml')
-rw-r--r--app/genealogy/.gitlab-ci.yml15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/genealogy/.gitlab-ci.yml b/app/genealogy/.gitlab-ci.yml
deleted file mode 100644
index e2c9e0e..0000000
--- a/app/genealogy/.gitlab-ci.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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'