Skip to content

Support Laravel 12 and Rector 2 #274

Support Laravel 12 and Rector 2

Support Laravel 12 and Rector 2 #274

name: CI
on:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ["8.0", "8.1", "8.2", "8.3", "8.4"]
dependency-versions: [lowest, highest]
name: Tests - PHP ${{ matrix.php }} - ${{ matrix.dependency-versions }}
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependency-versions }}
- run: vendor/bin/phpunit --testsuite=Tests
- run: vendor/bin/phpunit --testsuite=Rector
static-analysis:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ["8.0", "8.1", "8.2", "8.3", "8.4"]
dependency-versions: [lowest, highest]
name: Static Analysis - PHP ${{ matrix.php }} - ${{ matrix.dependency-versions }}
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependency-versions }}
- run: vendor/bin/phpstan