Candidate/v4.x #12
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: PHP Unit Tests | |
on: | |
push: | |
paths: | |
- '**workflows/php-unit-tests.yml' | |
- '**.php' | |
- '**phpunit.xml.dist' | |
- '**composer.json' | |
pull_request: | |
paths: | |
- '**workflows/php-unit-tests.yml' | |
- '**.php' | |
- '**phpunit.xml.dist' | |
- '**composer.json' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message, 'skip tests') }} | |
env: | |
USE_COVERAGE: no | |
strategy: | |
fail-fast: false | |
matrix: | |
php-ver: [ '8.0', '8.1', '8.2', '8.3' ] | |
composer-ver: [ '2.3', '2.4', '2.5', '2.6', '2' ] | |
steps: | |
- name: Update "USE_COVERAGE" env var based on matrix | |
if: ${{ matrix.php-ver == '8.0' && matrix.deps-mode == 'highest' }} | |
run: echo "USE_COVERAGE=yes" >> $GITHUB_ENV | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-ver }} | |
ini-values: zend.assertions=1, error_reporting=-1, display_errors=On | |
coverage: ${{ ((env.USE_COVERAGE == 'yes') && 'xdebug') || 'none' }} | |
tools: cs2pr, composer:v${{ matrix.composer-ver }} | |
- name: Adjust Composer dependencies | |
run: | | |
composer remove --dev --no-update "inpsyde/php-coding-standards" | |
composer remove --dev --no-update "vimeo/psalm" | |
composer require --dev --no-update "composer/composer:~${{ matrix.composer-ver }}.0" | |
- name: Install dependencies | |
uses: ramsey/composer-install@v3 | |
- name: Run unit tests | |
run: ./vendor/bin/phpunit --testsuite=unit ${{ ((env.USE_COVERAGE == 'yes') && '--coverage-html=coverage-report') || '--no-coverage' }} | |
- name: Upload coverage report | |
uses: actions/upload-artifact@v4 | |
if: ${{ env.USE_COVERAGE == 'yes' }} | |
with: | |
name: coverage-report | |
path: coverage-report/ |