Skip to content

V3 with new DOM API and Array Step Output Filter #286

V3 with new DOM API and Array Step Output Filter

V3 with new DOM API and Array Step Output Filter #286

Workflow file for this run

name: CI
on: pull_request
jobs:
tests:
name: PestPHP Tests
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3', '8.4']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: composer test
- name: Run integration tests
run: composer test-integration
tests84:
name: PestPHP Tests Running only on PHP >= 8.4
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.4' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: composer test-php84
stanAndCs:
name: Static Analysis (phpstan) and Code Style (PHP CS Fixer)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHPStan
run: composer stan
- name: Run PHP CS Fixer
run: composer cs