mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
16 lines
395 B
Bash
Executable File
16 lines
395 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
cd /tmp/
|
|
mkdir testing-with-real-projects
|
|
cd testing-with-real-projects
|
|
git clone git@github.com:sebastianbergmann/phpunit.git
|
|
|
|
cd phpunit
|
|
git checkout 4db048f # small template fix
|
|
composer install
|
|
~/project/build/psalm.phar --config=.psalm/config.xml --monochrome --show-info=false
|
|
~/project/build/psalm.phar --config=.psalm/static-analysis.xml --monochrome
|