Updated Rector to commit 0cb3fd0feb464b4568e07607a05c794637aa2862 #4669
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Along Other Packages | |
on: | |
pull_request: null | |
push: | |
branches: | |
- main | |
jobs: | |
along_other_packages: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php_version: ['7.2', '7.3', '7.4', '8.0', '8.1'] | |
commands: | |
- | |
name: 'Composer Dependency' | |
install: composer require symfony/console:2.8 --ansi | |
run: vendor/bin/rector list --debug --ansi | |
- | |
name: 'PHP Parser 3.1' | |
install: composer require nikic/php-parser:^3.1 --ansi | |
- | |
name: 'Along PHPStan' | |
install: composer require phpstan/phpstan:^1.1.1 --dev --ansi | |
name: "PHP ${{ matrix.php_version }}" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php_version }} | |
coverage: none | |
# wait for deploy to packagist | |
- run: sleep 40 | |
- run: | | |
mkdir standalone | |
cd standalone | |
- run: | | |
# run | |
yes | composer init --name some/prj | |
composer config minimum-stability dev | |
composer config prefer-stable true | |
composer require rector/rector:dev-main --dev --ansi | |
${{ matrix.commands.install }} | |
working-directory: standalone | |
- | |
run: vendor/bin/rector list --ansi | |
working-directory: standalone |