Issue #3484917: when create new content type and use Flysystem GCS Co… #5
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: lint | |
on: | |
push: | |
branches: | |
jobs: | |
phpcs: | |
name: Run PHPCS with Drupal Standards | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up PHP and Composer | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
tools: phpcs | |
coverage: none | |
- name: Install Drupal Coder Standards | |
run: | | |
composer global config --no-plugins allow-plugins.dealerdirect/phpcodesniffer-composer-installer true | |
composer global require --no-interaction drupal/coder slevomat/coding-standard | |
COMPOSER_HOME=$(composer config --global home) | |
phpcs --config-set installed_paths \ | |
"$COMPOSER_HOME/vendor/drupal/coder/coder_sniffer,$COMPOSER_HOME/vendor/slevomat/coding-standard" | |
phpcs -i | |
- name: Run PHPCS | |
run: phpcs --standard=Drupal --extensions=php,module,inc,install,test,profile,theme --ignore=vendor/ ./ | |
- name: Run DrupalPractice | |
run: phpcs --standard=DrupalPractice --extensions=php,module,inc,install,test,profile,theme --ignore=vendor/ ./ |