fix cs errors #30
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: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: # allows you to manually dispatch a workflow run via Github UI | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
testsuite-linux: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: [ '8.1', '8.2', '8.3' ] | |
dependencies: ['highest'] | |
include: | |
- php-version: '8.1' | |
dependencies: 'lowest' | |
- php-version: '8.3' | |
dependencies: 'highest' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: mbstring, intl | |
ini-values: zend.assertions=1 | |
coverage: pcov | |
- name: Composer install | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: ${{ matrix.dependencies }} | |
composer-options: ${{ matrix.composer-options }} | |
- name: Run PHPUnit | |
run: | | |
if [[ ${{ matrix.php-version }} == '8.1' ]]; then | |
vendor/bin/phpunit --coverage-clover=coverage.xml | |
else | |
vendor/bin/phpunit | |
fi | |
cs: | |
name: Coding Standard | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
extensions: mbstring, intl | |
coverage: none | |
tools: cs2pr | |
- name: Composer install | |
uses: ramsey/composer-install@v2 | |
- name: Run phpcs | |
run: vendor/bin/phpcs --report=checkstyle src/ tests/ | cs2pr |