Skip to content

Update README.md (#9) #16

Update README.md (#9)

Update README.md (#9) #16

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [ 8.1, 8.2, 8.3 ]
name: Test on PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: pcov
- name: Install dependencies
run: composer update --prefer-source --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit