Update rector/rector requirement from ^0.17 to ^0.18 #213
Workflow file for this run
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: CI | |
on: [pull_request] | |
jobs: | |
tests: | |
name: Tests (PHP ${{ matrix.php }}, dependencies ${{ matrix.dependencies }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [7.4, 8.0] | |
dependencies: | |
- "lowest" | |
- "highest" | |
include: | |
- { php: 8.1, dependencies: "highest" } | |
- { php: 8.2, dependencies: "highest" } | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Install dependencies | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: ${{ matrix.dependencies }} | |
- name: Run tests | |
run: vendor/bin/phpunit test | |
phpunit-compatibility: | |
name: Test End to End with php ${{ matrix.php }}, phpunit ${{ matrix.phpunit }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- { phpunit: 9, php: 8.2 } | |
- { phpunit: 9, php: 8.1 } | |
- { phpunit: 9, php: 8.0 } | |
- { phpunit: 8, php: 7.4 } | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Install dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Download phpunit phar | |
run: | | |
wget -O phpunit https://phar.phpunit.de/phpunit-${{ matrix.phpunit }}.phar | |
chmod +x phpunit | |
- name: Run tests | |
run: ./phpunit --testsuite EndToEnd |