WIP|FEATURE: Integrate gitlab ci
* Provide a way to run php unit functional tests
This commit is contained in:
parent
64bcf4fa72
commit
92c973c7f4
1 changed files with 18 additions and 0 deletions
18
.gitlab-ci.yml
Normal file
18
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
image: 'composer:latest'
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- >
|
||||||
|
composer install
|
||||||
|
--optimize-autoloader
|
||||||
|
--no-interaction
|
||||||
|
--no-ansi
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- test
|
||||||
|
|
||||||
|
test:functional:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- ./vendor/bin/phpunit
|
||||||
|
|
||||||
|
# Further stages, and jobs e.g. linting, cgl, etc.
|
Loading…
Reference in a new issue