firefly-iii/.ci/phpstan.sh

12 lines
233 B
Bash
Raw Normal View History

2020-07-31 10:24:18 -05:00
#!/usr/bin/env bash
2020-07-31 12:10:02 -05:00
# Install composer packages
2020-11-08 07:07:59 -06:00
composer install --no-scripts --no-ansi
2020-07-31 12:28:08 -05:00
2020-07-31 22:49:45 -05:00
# enable test .env file.
2020-07-31 22:56:32 -05:00
cp .ci/.env.ci .env
2020-07-31 10:24:18 -05:00
2020-07-31 12:10:02 -05:00
# Do static code analysis.
2020-07-31 12:30:30 -05:00
./vendor/bin/phpstan analyse -c .ci/phpstan.neon --no-progress
2020-07-31 12:18:40 -05:00
2020-07-31 12:15:26 -05:00
exit 0