Skip to content

[TASK] Update reference to PHP 8.0 tests #22

[TASK] Update reference to PHP 8.0 tests

[TASK] Update reference to PHP 8.0 tests #22

Workflow file for this run

name: 'Tests (Ubuntu)'
on:
push:
pull_request:
schedule:
- cron: '45 6 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: xdebug.mode=develop
tools: composer:v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Lint PHP
run: |
find . -name \*.php ! -path './vendor/*' | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \;
- name: Install dependencies
if: ${{ matrix.php <= '8.1' }}
run: composer install --prefer-dist --no-progress --no-suggest
- name: Install dependencies PHP 8.2
# @todo: Needed until prophecy (req by phpunit) allows PHP 8.2, https://github.com/phpspec/prophecy/issues/556
if: ${{ matrix.php > '8.1' }}
run: composer install --prefer-dist --no-progress --no-suggest --ignore-platform-req=php+
- name: Run test suite
env:
SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT: 1
SYMFONY_PHPUNIT_DISABLE_RESULT_CACHE: 1
run: |
vendor/bin/simple-phpunit --colors