Skip to content

make this compatible with PHP 8.2 fixes #2 #6

make this compatible with PHP 8.2 fixes #2

make this compatible with PHP 8.2 fixes #2 #6

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
test:
name: PHPUnit
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHPUnit
run: vendor/bin/phpunit tests