Skip to content

Avoid a deprecation notice when running tests with PHP 8.3 #33

Avoid a deprecation notice when running tests with PHP 8.3

Avoid a deprecation notice when running tests with PHP 8.3 #33

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '10 6 * * 1'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: [ '7.2', '7.4', '8.1', '8.2', '8.3', '8.4' ]
dependency-version: [ prefer-stable ]
include:
- { php-version: '7.2', dependency-version: prefer-lowest }
name: PHP ${{ matrix.php-version }} - ${{ matrix.dependency-version }}
steps:
- uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Install dependencies
run: composer update --no-interaction --prefer-dist --${{ matrix.dependency-version}} --no-progress --no-suggest
- name: Run test suite
run: vendor/bin/phpunit