Testing on PHP 8.4 #1266
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- release/** | |
permissions: | |
contents: read | |
# Cancel in progress workflows on pull_requests. | |
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: Tests (${{ matrix.os }}, ${{ matrix.php.version }}, ${{ matrix.dependencies }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
php: | |
- { version: '7.2', phpunit: '^8.5.40' } | |
- { version: '7.3', phpunit: '^9.6.21' } | |
- { version: '7.4', phpunit: '^9.6.21' } | |
- { version: '8.0', phpunit: '^9.6.21' } | |
- { version: '8.1', phpunit: '^9.6.21' } | |
- { version: '8.2', phpunit: '^9.6.21' } | |
- { version: '8.3', phpunit: '^9.6.21' } | |
- { version: '8.4', phpunit: '^9.6.21' } | |
dependencies: | |
- lowest | |
- highest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php.version }} | |
coverage: xdebug | |
- name: Setup Problem Matchers for PHPUnit | |
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Determine Composer cache directory | |
id: composer-cache | |
run: echo "directory=$(composer config cache-dir)" >> "$GITHUB_OUTPUT" | |
shell: bash | |
- name: Cache Composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.directory }} | |
key: ${{ runner.os }}-${{ matrix.php.version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-${{ matrix.php.version }}-${{ matrix.dependencies }}-composer- | |
# These dependencies are not used running the tests but can cause deprecation warnings so we remove them before running the tests | |
- name: Remove unused dependencies | |
run: composer remove vimeo/psalm phpstan/phpstan friendsofphp/php-cs-fixer --dev --no-interaction --no-update | |
- name: Set phpunit/phpunit version constraint | |
run: composer require phpunit/phpunit:'${{ matrix.php.phpunit }}' --dev --no-interaction --no-update | |
- name: Install highest dependencies | |
run: composer update --no-progress --no-interaction --prefer-dist | |
if: ${{ matrix.dependencies == 'highest' }} | |
- name: Install lowest dependencies | |
run: composer update --no-progress --no-interaction --prefer-dist --prefer-lowest | |
if: ${{ matrix.dependencies == 'lowest' }} | |
- name: Run unit tests | |
run: vendor/bin/phpunit --testsuite unit --coverage-clover=coverage.xml | |
# The reason for running some OOM tests without coverage is that because the coverage information collector can cause another OOM event invalidating the test | |
- name: Run out of memory tests (without coverage) | |
run: vendor/bin/phpunit --testsuite oom --no-coverage | |
- name: Upload code coverage | |
uses: codecov/codecov-action@v3 | |
- name: Check benchmarks | |
run: vendor/bin/phpbench run --revs=1 --iterations=1 | |
if: ${{ matrix.dependencies == 'highest' && matrix.php.version == '8.2' }} |