mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-23 01:16:46 -06:00
12 lines
246 B
Bash
Executable File
12 lines
246 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Install composer packages
|
|
composer install --no-suggest --no-scripts --no-ansi
|
|
|
|
# enable test .env file.
|
|
cp .ci/.env.ci .env
|
|
|
|
# Do static code analysis.
|
|
./vendor/bin/phpstan analyse -c .ci/phpstan.neon --no-progress
|
|
|
|
exit 0 |