Generate VIP autoload whne adding/removing packages #77
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/unit-tests-php.yml' | |
- '**.php' | |
- '**phpunit.xml.dist' | |
- '**psalm.xml' | |
pull_request: | |
paths: | |
- '**workflows/quality-assurance-php.yml' | |
- '**.php' | |
- '**phpcs.xml.dist' | |
- '**psalm.xml' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit-tests-php: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-ver: [ '8.0', '8.1', '8.2', '8.3' ] | |
composer-ver: [ '2.4', '2.5', '2.6', '2' ] | |
dependency-versions: [ 'lowest', 'highest' ] | |
steps: | |
- 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: none | |
tools: composer:v${{ matrix.composer-ver }} | |
- name: Adjust dependencies in 'composer.json' | |
run: | | |
composer remove composer-plugin-api --no-update | |
composer remove composer/composer inpsyde/php-coding-standards vimeo/psalm --dev --no-update | |
composer require "composer/composer:~${{ matrix.composer-ver }}.0" --dev --no-update | |
- name: Install dependencies | |
uses: ramsey/composer-install@v3 | |
with: | |
dependency-versions: ${{ matrix.dependency-versions }} | |
- name: Run unit tests | |
run: ./vendor/bin/phpunit --no-coverage |