19 lines
346 B
Bash
19 lines
346 B
Bash
|
#!/bin/sh -l
|
||
|
|
||
|
apt-get update && \
|
||
|
apt-get install -y --no-install-recommends \
|
||
|
git \
|
||
|
zip \
|
||
|
curl \
|
||
|
unzip \
|
||
|
wget
|
||
|
|
||
|
curl --silent --show-error https://getcomposer.org/installer | php
|
||
|
php composer.phar self-update
|
||
|
|
||
|
echo "---Installing dependencies ---"
|
||
|
php composer.phar update
|
||
|
|
||
|
echo "---Running unit tests ---"
|
||
|
vendor/bin/phpunit
|