Skip to content

Merge pull request #21 from kagg-design/php-8.4 #16

Merge pull request #21 from kagg-design/php-8.4

Merge pull request #21 from kagg-design/php-8.4 #16

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: ['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"