Skip to content

docs: updated readme #22

docs: updated readme

docs: updated readme #22

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
- '*.x'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.1, 8.2, 8.3, 8.4]
steps:
- uses: actions/checkout@v1
- name: Set PHP version
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install composer dependencies
run: composer install --quiet --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Run tests
run: composer test