Skip to content

[2.x] PHP 8.4 support #1483

[2.x] PHP 8.4 support

[2.x] PHP 8.4 support #1483

Workflow file for this run

name: tests
on:
push:
branches:
- master
- develop
- '*.x'
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
linux_tests:
runs-on: ubuntu-24.04
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
laravel: [10, 11]
include:
- php: 8.4
laravel: 11
exclude:
- php: 8.1
laravel: 11
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none
- name: Setup Problem Matches
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install PHP dependencies
if: matrix.php != 8.4
run: composer update --prefer-stable --no-interaction --no-progress --with="illuminate/support:^${{ matrix.laravel }}"
- name: Install PHP dependencies (== PHP 8.4)
if: matrix.php == 8.4
run: composer update --prefer-stable --no-interaction --no-progress --ignore-platform-req=php+ --with="illuminate/support:^${{ matrix.laravel }}"
- name: Execute tests
run: vendor/bin/pest