diff options
author | Minteck <contact@minteck.org> | 2022-01-12 18:59:32 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-01-12 18:59:32 +0100 |
commit | 99fcee47829b5ff31c580f3d5b2d2133e092d9e3 (patch) | |
tree | 3bdeab0d1783dd266c0103557cb3d501975717bb | |
parent | d0982c5250d2e33c824ddccb8bd245ca39faa724 (diff) | |
parent | b20156e88124df5d154b1a8ebfb4bfc7abc80d4a (diff) | |
download | genealogy-99fcee47829b5ff31c580f3d5b2d2133e092d9e3.tar.gz genealogy-99fcee47829b5ff31c580f3d5b2d2133e092d9e3.tar.bz2 genealogy-99fcee47829b5ff31c580f3d5b2d2133e092d9e3.zip |
Merge branch 'trunk' of https://source.minteck.org/familine/genealogy into trunk
-rw-r--r-- | .gitlab-ci.yml | 15 | ||||
-rw-r--r-- | LICENSE | 21 |
2 files changed, 36 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' @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021- Minteck + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. |