Skip to content

Switch to Ubuntu 22.04, include PHP 8.3 #22

Switch to Ubuntu 22.04, include PHP 8.3

Switch to Ubuntu 22.04, include PHP 8.3 #22

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
phpunit:
name: PHPUnit
runs-on: ubuntu-22.04
strategy:
matrix:
php:
- '5.3'
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- '7.1'
- '7.2'
- '7.3'
- '7.4'
- '8.0'
- '8.1'
- '8.2'
- '8.3'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
coverage: "none"
extensions: "pcre"
php-version: "${{ matrix.php }}"
- name: Install dependencies
run: composer update --ansi --no-progress --no-interaction
- name: Run tests
run: ./vendor/bin/phpunit --colors=always