Skip to content

Merge pull request #12 from deniskorbakov/renovate/actions-checkout-6.x #26

Merge pull request #12 from deniskorbakov/renovate/actions-checkout-6.x

Merge pull request #12 from deniskorbakov/renovate/actions-checkout-6.x #26

Workflow file for this run

name: TESTS
on: ['push']
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- '8.4'
- '8.3'
- '8.2'
name: Tests (PHP ${{ matrix.php }} - ${{ matrix.deps }})
steps:
- uses: actions/checkout@v6
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: xdebug
- name: Install dependencies
run: composer update
- name: Test code
run: composer tests
- name: Test coverage
run: composer tests-coverage
- name: Test coverage
run: composer tests-mutation