Skip to content

Fix running tests on PHP 7.1 #216

Fix running tests on PHP 7.1

Fix running tests on PHP 7.1 #216

Workflow file for this run

name: run-tests
on:
push:
schedule:
- cron: '0 0 */5 * *'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
php: [8.3, 8.0, 7.4]
laravel: [9.*, 8.*, 7.*, 6.*, 5.8.*]
dependency-version: [prefer-lowest]
os: [ubuntu-latest]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*
- laravel: 5.8.*
testbench: 3.8.*
exclude:
- php: 7.4
laravel: 9.*
- php: 8.0
laravel: 5.8.*
- php: 8.3
laravel: 5.8.*
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.composer/cache/files
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: composer test