Skip to content

feat(Testing): Add TestRunner trait with TestingSuite attribute #56

feat(Testing): Add TestRunner trait with TestingSuite attribute

feat(Testing): Add TestRunner trait with TestingSuite attribute #56

Workflow file for this run

name: Tests
on: [ 'push', 'pull_request' ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ 8.1, 8.2, 8.3, 8.4, 8.5 ]
max-parallel: 2
name: Tests PHP${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install Composer dependencies
run: composer update --no-interaction --prefer-dist
- name: Run Tests
run: composer test