constructor argument promotion and cleanup test type declarations #302
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 | |
env: | |
SYMFONY_PHPUNIT_DIR: "$HOME/symfony-bridge/.phpunit" | |
on: | |
push: | |
branches: | |
- "*.x" | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Test the latest stable release | |
- php-version: '8.1' | |
dependencies: 'jean-beru/fos-http-cache-cloudfront' | |
- php-version: '8.1' | |
symfony-version: '6.4' | |
- php-version: '8.2' | |
symfony-version: '6.4' | |
- php-version: '8.2' | |
symfony-version: '7.*' | |
- php-version: '8.3' | |
symfony-version: '7.*' | |
# Minimum supported dependencies with the oldest PHP version | |
- php-version: '8.1' | |
composer-flag: '--prefer-stable --prefer-lowest' | |
symfony-version: '6.4' | |
# Test latest unreleased versions | |
- php-version: '8.3' | |
stability: 'dev' | |
name: PHP ${{ matrix.php-version }} Test on Symfony ${{ matrix.symfony-version }} ${{ matrix.dependencies}} ${{ matrix.stability }} ${{ matrix.composer-flag }} | |
steps: | |
- name: Pull the code | |
uses: actions/checkout@v4 | |
- name: Install PHP and Composer | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
tools: composer:v2, flex | |
coverage: none | |
- name: Stability | |
run: composer config minimum-stability ${{ matrix.stability }} | |
if: ${{ matrix.stability }} | |
- name: Additional require | |
run: composer require --no-update ${{ matrix.dependencies }} | |
if: ${{ matrix.dependencies }} | |
- name: Composer update | |
env: | |
SYMFONY_REQUIRE: ${{ matrix.symfony-version }} | |
run: | | |
composer update ${{ matrix.composer-flag }} --prefer-dist --no-interaction --no-progress | |
- name: Composer validate | |
run: composer validate --strict --no-check-lock | |
if: ${{ matrix.stability != 'dev' }} | |
- name: Run tests | |
run: php vendor/bin/phpunit | |
if: ${{ matrix.stability != 'dev' }} | |
- name: Run tests allow to fail | |
run: php vendor/bin/phpunit || true | |
continue-on-error: true | |
if: ${{ matrix.stability == 'dev' }} |