Skip to content

Update README.md

Update README.md #464

Workflow file for this run

name: Unit Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: ['7.4', '8.0']
dependency-version: [prefer-stable]
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: composer install --no-progress --no-suggest
- name: PHPStan
run: vendor/bin/phpstan
- name: Run test suite
run: vendor/bin/phpunit --testsuite=unit