Skip to content

Merge branch '4.x' into develop #1787

Merge branch '4.x' into develop

Merge branch '4.x' into develop #1787

Workflow file for this run

name: Tests
on:
push:
branches:
- 2.x
- 3.x
- 4.x
- develop
pull_request:
jobs:
phpUnitTests:
runs-on: ubuntu-latest
strategy:
max-parallel: 6
matrix:
phpVersions: ['8.2', '8.3', '8.4']
fail-fast: false
name: PHP ${{ matrix.phpVersions }}
steps:
- name: Checkout changes
uses: actions/checkout@v1
- name: Install PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.phpVersions }}
- name: Install Composer dependencies
run: |
composer config --no-interaction allow-plugins.composer/installers true
composer install --no-interaction --no-progress --no-scripts
- name: Run Tests
run: ./vendor/bin/phpunit ./tests