Test against PHP 8.2, 8.3 + fix CI #10
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: | |
push: | |
pull_request: | |
jobs: | |
check_composer: | |
name: Check composer.json | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: '8.0' | |
- run: composer validate --strict --no-check-lock | |
tests: | |
name: "Tests on PHP ${{ matrix.php }}${{ matrix.name_suffix }}" | |
runs-on: ubuntu-latest | |
env: | |
SYMFONY_PHPUNIT_REMOVE: '' # don't remove prophecy | |
SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT: 1 | |
SYMFONY_PHPUNIT_REQUIRE: 'phpspec/prophecy:^1.7' | |
SYMFONY_DEPRECATIONS_HELPER: '${{ matrix.symfony_deprecations_helper }}' | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] | |
min_stability: [ '' ] | |
name_suffix: [ '' ] | |
composer_flags: [ '' ] | |
symfony_deprecations_helper: [ 'max[total]=0' ] | |
include: | |
- php: '8.0' | |
min_stability: 'dev' | |
name_suffix: ' (dev deps)' | |
- php: '7.4' | |
min_stability: '' | |
name_suffix: ' (lowest deps)' | |
composer_flags: '--prefer-lowest --prefer-stable' | |
symfony_deprecations_helper: '999999' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php }}" | |
- name: Configure stability | |
if: "matrix.min_stability != ''" | |
run: composer config minimum-stability "${{ matrix.min_stability }}" | |
- name: Install dependencies | |
run: composer update --ansi --no-progress --prefer-dist --no-interaction ${{ matrix.composer_flags }} | |
- name: Install PHPUnit | |
run: vendor/bin/simple-phpunit install | |
- name: Run tests | |
run: vendor/bin/simple-phpunit |