Skip to content

added demo section to readme #9

added demo section to readme

added demo section to readme #9

Workflow file for this run

name: CI
on: [ push ]
jobs:
ci:
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-latest ]
php-versions: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-progress
- name: Static analysis
run: vendor/bin/phpstan analyse src --level=max
- name: Run test suite
run: vendor/bin/phpunit tests/