Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/run_on_project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ jobs:
- run: composer require rector/argtyper --ansi

# clone laravel project with dependencies
- run: git clone https://github.com/laravel/framework.git --depth=1
- run: composer install --working-dir framework --ansi
- run: git clone https://github.com/symfony/console.git --depth=1
- run: composer install --working-dir console --ansi

# ensure phpstan is available
- run: composer require --working-dir console phpstan/phpstan --ansi

# on whole project, to be able to load vendor/autoload.php
- run: vendor/bin/argtyper add-types framework --ansi
- run: vendor/bin/argtyper add-types console --ansi
Loading