v4.0.0 #79
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: PHP Composer | |
on: | |
push: | |
branches: [main, build-matrix] | |
pull_request: | |
branches: [main] | |
release: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
#@wontfix 'windows-latest', 'macos-latest' | |
operating-system: ["ubuntu-latest"] | |
#@wontfix v.5.3 conflicts with php-cs-fixer | |
#@todo fix v.8 conflicts with phpunit | |
php-versions: ["7.3", "7.4", "8.2", "8.3"] | |
#phpunit-versions: ['latest'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring, intl, curl | |
ini-values: post_max_size=256M, max_execution_time=180 | |
#coverage: xdebug | |
#tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }} | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
# - name: Cache Composer packages | |
# id: composer-cache | |
# uses: actions/cache@v2 | |
# with: | |
# path: vendor | |
# key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
# restore-keys: | | |
# ${{ runner.os }}-php- | |
- name: Install dependencies | |
if: steps.composer-cache.outputs.cache-hit != 'true' | |
run: composer install --prefer-dist --no-progress --no-suggest | |
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit" | |
# Docs: https://getcomposer.org/doc/articles/scripts.md | |
- name: Composer Autoload | |
run: composer dump-autoload | |
- name: Run test suite | |
if: ${{ matrix.php-versions == '8.2' }} | |
run: composer run-script test |