Skip to content

PHP 8.1 - 8.4 compatibility #10

PHP 8.1 - 8.4 compatibility

PHP 8.1 - 8.4 compatibility #10

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
php-version: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
name: PHP ${{ matrix.php-version }} on ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Install dependencies
run: composer install
- name: PHPUnit tests
run: "vendor/bin/phpunit"