fix error with change in slevomat/coding-standard 8.19.0 #223
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
testsuite: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: ['7.2', '7.4', '8.0'] | |
prefer-lowest: [''] | |
include: | |
- php-version: '7.2' | |
prefer-lowest: 'prefer-lowest' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: mbstring, intl | |
coverage: pcov | |
- name: Composer install | |
uses: ramsey/composer-install@v3 | |
- name: Setup problem matchers for PHPUnit | |
if: matrix.php-version == '7.4' | |
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Run PHPUnit | |
run: | | |
vendor/bin/phpcs --config-set installed_paths $(pwd) | |
vendor/bin/phpunit --filter CakePHP | |
- name: Submit code coverage | |
if: matrix.php-version == '7.4' | |
uses: codecov/codecov-action@v1 | |
cs-stan: | |
name: Coding Standard & Static Analysis | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.2' | |
extensions: mbstring, intl | |
tools: cs2pr | |
coverage: none | |
- name: Composer install | |
uses: ramsey/composer-install@v3 | |
- name: Run PHP CodeSniffer | |
run: vendor/bin/phpcs --report=checkstyle CakePHP/ | cs2pr |