Skip to content

Merge pull request #13 from dfridrich/php-8.2 #15

Merge pull request #13 from dfridrich/php-8.2

Merge pull request #13 from dfridrich/php-8.2 #15

Workflow file for this run

name: PHPUnit
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions:
- 8.1
- 8.2
- 8.3
name: PHP ${{ matrix.php-versions }} test
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit
- name: Install dependencies
run: composer install --prefer-dist --dev
- run: phpunit