1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-21 21:31:13 +01:00

Test with PHP-Standard-Library (#3768)

This commit is contained in:
Saif Eddin G 2020-07-07 23:12:07 +02:00 committed by GitHub
parent cda6bd0553
commit ee8619f7bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -99,6 +99,9 @@ jobs:
- run:
name: Analyse ProxyManager
command: bin/test-with-real-projects.sh proxymanager
- run:
name: Analyse Psl
command: bin/test-with-real-projects.sh psl
# Orchestrate or schedule a set of jobs, see https://circleci.com/docs/2.0/workflows/
workflows:

View File

@ -30,6 +30,13 @@ proxymanager)
~/project/psalm --monochrome
;;
psl)
git clone git@github.com:azjezz/psl.git
cd psl
composer install --ignore-platform-reqs
~/project/psalm --monochrome
;;
laravel)
git clone git@github.com:muglug/framework.git
cd framework
@ -37,6 +44,6 @@ laravel)
~/project/psalm --monochrome
;;
*)
echo "Usage: test-with-real-projects.sh {phpunit|collections|proxymanager|laravel}"
echo "Usage: test-with-real-projects.sh {phpunit|collections|proxymanager|laravel|psl}"
exit 1
esac