aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScoots Dash (Minteck) <contact@minteck.org>2022-04-12 10:26:10 +0000
committerScoots Dash (Minteck) <contact@minteck.org>2022-04-12 10:26:10 +0000
commit958cbe87bf8f76fab9cb92c9c458f437fd7fcdde (patch)
tree3668c9357421542877a2405dbc8c6918eac3d638
parenta6b840fd13201cd73d73a9b3b2c8dfaab2c9b652 (diff)
downloadplanning-958cbe87bf8f76fab9cb92c9c458f437fd7fcdde.tar.gz
planning-958cbe87bf8f76fab9cb92c9c458f437fd7fcdde.tar.bz2
planning-958cbe87bf8f76fab9cb92c9c458f437fd7fcdde.zip
Delete .gitlab-ci.ymlHEADtrunk
-rw-r--r--.gitlab-ci.yml15
1 files changed, 0 insertions, 15 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 4402674..0000000
--- a/.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'