diff options
author | Minteck <contact@minteck.org> | 2022-04-12 11:47:01 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-04-12 11:47:01 +0200 |
commit | 41556be35cba41643d18f27c4c9ba264dde6a186 (patch) | |
tree | 57db148e2e83408e6bc105015f000240e1e4638f /.gitlab-ci.yml | |
parent | 696f2b8888aaa2a1c0f8edba13dcf2238d7c83f4 (diff) | |
download | genealogy-trunk.tar.gz genealogy-trunk.tar.bz2 genealogy-trunk.zip |
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4402674..e2c9e0e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,15 +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' +# 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'
|