Skip to content

Add PHP 8.3 to test matrix #9

Add PHP 8.3 to test matrix

Add PHP 8.3 to test matrix #9

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
- name: Install dependencies
run: composer install -o --no-progress
- name: Run tests
run: ./vendor/bin/phpunit test