Add optional arguments to interface, to enhance compatibility #372
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['8.2', '8.3', '8.4'] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: gd, mbstring, pcov, zip | |
ini-values: max_execution_time=600, memory_limit=-1 | |
tools: composer:v2 | |
coverage: pcov | |
env: | |
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get composer cache directory | |
id: composercache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composercache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Setup problem matchers | |
run: | | |
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Install Composer dependencies | |
run: composer install --prefer-dist | |
- name: Test against highest versions | |
run: | | |
vendor/bin/unit-test | |
vendor/bin/functional-test | |
- name: Check code quality | |
run: vendor/bin/code-quality | |
env: | |
PHP_CS_FIXER_IGNORE_ENV: 1 | |
- name: Test against lowest versions | |
run: | | |
composer update --prefer-lowest | |
vendor/bin/unit-test | |
vendor/bin/functional-test 5.4 | |
- name: Archive logs | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: logs-php-${{ matrix.php-versions }} | |
path: vendor/endroid/quality/application/var/log | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-php-${{ matrix.php-versions }} | |
path: tests/coverage |