Remove .class parameters #2303
Workflow file for this run
This file contains hidden or 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: "Continuous Integration" | |
on: | |
pull_request: | |
branches: | |
- "*.x" | |
paths: | |
- .github/workflows/continuous-integration.yml | |
- config/** | |
- composer.* | |
- phpunit.xml.dist | |
- src/** | |
- templates/** | |
- tests/** | |
push: | |
branches: | |
- "*.x" | |
paths: | |
- .github/workflows/continuous-integration.yml | |
- config/** | |
- composer.* | |
- phpunit.xml.dist | |
- src/** | |
- templates/** | |
- tests/** | |
jobs: | |
phpunit: | |
name: "PHPUnit" | |
runs-on: "ubuntu-latest" | |
env: | |
SYMFONY_REQUIRE: ${{matrix.symfony-require}} | |
SYMFONY_DEPRECATIONS_HELPER: weak | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- "8.4" | |
dependencies: | |
- "highest" | |
stability: | |
- "stable" | |
symfony-require: | |
- "" | |
remove-orm: | |
- false | |
remove-doctrine-messenger: | |
- false | |
include: | |
# Tests the lowest set of dependencies | |
- dependencies: "lowest" | |
stability: "stable" | |
php-version: "8.4" | |
# Test LTS | |
- symfony-require: "6.4.*" | |
dependencies: "highest" | |
php-version: "8.4" | |
# DBAL only without ORM | |
- php-version: "8.4" | |
dependencies: "highest" | |
stability: "stable" | |
remove-orm: true | |
# No Messenger integration | |
- php-version: "8.4" | |
dependencies: "highest" | |
stability: "stable" | |
remove-doctrine-messenger: true | |
# Bleeding edge | |
- php-version: "8.4" | |
dependencies: "highest" | |
stability: "dev" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v5" | |
with: | |
fetch-depth: 2 | |
- name: "Install PHP with PCOV" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "${{ matrix.php-version }}" | |
coverage: "pcov" | |
ini-values: "zend.assertions=1" | |
extensions: "pdo_sqlite" | |
tools: "flex" | |
- name: "Enforce using stable dependencies" | |
run: "composer config minimum-stability stable" | |
if: "${{ matrix.stability == 'stable' }}" | |
- name: "Remove doctrine/orm" | |
run: "composer remove doctrine/orm --dev --no-update" | |
if: "${{ matrix.remove-orm }}" | |
- name: "Remove symfony/doctrine-messenger" | |
run: "composer remove symfony/doctrine-messenger --dev --no-update" | |
if: "${{ matrix.remove-doctrine-messenger }}" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v3" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
composer-options: "--prefer-dist" | |
- name: "Run PHPUnit" | |
run: "vendor/bin/phpunit --coverage-clover=coverage.xml" | |
- name: "Upload coverage file" | |
uses: "actions/upload-artifact@v4" | |
with: | |
name: "phpunit-${{ matrix.php-version }}-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}.coverage" | |
path: "coverage.xml" | |
upload_coverage: | |
name: "Upload coverage to Codecov" | |
runs-on: "ubuntu-latest" | |
# Only run on PRs from forks or PRs from branches that do not match `*.x` | |
if: "github.event.pull_request.head.repo.full_name != github.repository || !contains(github.event.pull_request.head.ref, '.x')" | |
needs: | |
- "phpunit" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v5" | |
with: | |
fetch-depth: 2 | |
- name: "Download coverage files" | |
uses: "actions/download-artifact@v5" | |
with: | |
path: "reports" | |
- name: "Upload to Codecov" | |
uses: "codecov/codecov-action@v5" | |
with: | |
directory: reports | |
env: | |
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}" |