diff options
author | Minteck <contact@minteck.org> | 2022-04-12 11:47:03 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-04-12 11:47:03 +0200 |
commit | 6255ae949f1038f990f21003f89e6f006d9e297e (patch) | |
tree | db3d85411f8aade9393e07e5714e0551709e816a /.gitlab-ci.yml | |
parent | 0da07c4eb842da243872f0a29d36be9b4bdb7984 (diff) | |
download | help-6255ae949f1038f990f21003f89e6f006d9e297e.tar.gz help-6255ae949f1038f990f21003f89e6f006d9e297e.tar.bz2 help-6255ae949f1038f990f21003f89e6f006d9e297e.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'
|