Skip to content

Fixes compatability with phpunit 12.5 #73

Fixes compatability with phpunit 12.5

Fixes compatability with phpunit 12.5 #73

Workflow file for this run

name: CI
on:
pull_request:
push:
branches-ignore:
- master
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.1, 8.2, 8.3, 8.4]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Validate composer.json
run: composer validate
- name: Install dependencies
run: composer update --prefer-source
- name: Run test suite
run: php vendor/bin/phpunit tests