Skip to content

v3.0.3

v3.0.3 #22

Workflow file for this run

name: Continuous Integration
on: [ push ]
jobs:
phpunit:
name: PHPUnit
runs-on: ubuntu-latest
strategy:
matrix:
php:
- "8.1"
- "8.2"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
- name: Install dependencies with Composer
uses: ramsey/composer-install@v2
- name: Run test suite
run: ./vendor/bin/phpunit