12 lines
119 B
YAML
12 lines
119 B
YAML
|
image: php:7.0
|
||
|
|
||
|
before_script:
|
||
|
- apt-get install phpunit
|
||
|
|
||
|
stages:
|
||
|
- test
|
||
|
|
||
|
test:
|
||
|
script:
|
||
|
- phpunit tests/
|