1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/bin/test-with-real-projects.sh
2020-02-20 14:16:03 -05:00

32 lines
691 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:muglug/phpunit.git
cd phpunit
composer install
~/project/build/psalm.phar --config=.psalm/config.xml --monochrome --show-info=false
~/project/build/psalm.phar --config=.psalm/static-analysis.xml --monochrome
cd /tmp/testing-with-real-projects
git clone git@github.com:muglug/collections.git
cd collections
composer install
~/project/psalm --monochrome --show-info=false
cd /tmp/testing-with-real-projects
git clone git@github.com:muglug/ProxyManager.git
cd ProxyManager
composer install
~/project/psalm --monochrome
cd /tmp/testing-with-real-projects