Issue #25: enable ordered_imports.case_sensitive by default since Drupal Coder (8.3.25) is now enforcing it #64
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: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
schedule: | |
- cron: "0 0 * * THU" | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['8.0', '8.1', '8.2', '8.3'] | |
phpcsfixer-version: ['3.*', '*'] | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
tools: composer:v2 | |
- uses: actions/checkout@v3 | |
- name: Download PHP-CS-Fixer ${{ matrix.phpcsfixer-version }} | |
run: composer require friendsofphp/php-cs-fixer:${{ matrix.phpcsfixer-version }} --prefer-source --no-update | |
- uses: php-actions/composer@v6 | |
with: | |
php_version: ${{ matrix.php-versions }} | |
version: 2 | |
- name: Run test suite on PHP ${{ matrix.php-versions }} and PHP-CS-Fixer ${{ matrix.phpcsfixer-version }} | |
run: XDEBUG_MODE=coverage ./vendor/bin/phpunit |