Add .gitlab-ci.yml
This commit is contained in:
parent
03a24c883b
commit
92166b921e
1 changed files with 11 additions and 0 deletions
11
.gitlab-ci.yml
Normal file
11
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
image: php:7.0
|
||||
|
||||
before_script:
|
||||
- apt-get install phpunit
|
||||
|
||||
stages:
|
||||
- test
|
||||
|
||||
test:
|
||||
script:
|
||||
- phpunit tests/
|
Reference in a new issue