Skip to content

Update documentation on alert behaviours (#149) #82

Update documentation on alert behaviours (#149)

Update documentation on alert behaviours (#149) #82

Workflow file for this run

name: PHPUnit
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: ['8.1', '8.2']
phpunit-versions: ['8.2', latest]
name: PHP ${{ matrix.php-versions }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, ctype, fileinfo, openssl, PDO, bcmath, json, tokenizer, xml
tools: phpunit:${{ matrix.phpunit-versions }}
coverage: none
- name: Install dependencies
if: "steps.composer-cache.outputs.cache-hit != 'true'"
run: composer install --prefer-dist --no-interaction --no-suggest
- name: Run test suite
run: composer run-script test