Skip to content

Form Customization: Fully support comma-separated constraints lists #988

Form Customization: Fully support comma-separated constraints lists

Form Customization: Fully support comma-separated constraints lists #988

Workflow file for this run

name: "Code Quality"
on:
pull_request:
paths:
- "**.php"
- "phpcs.xml"
- ".github/workflows/phpcs.yml"
jobs:
phpcs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- uses: thenabeel/action-phpcs@v8
with:
files: "**.php"
phpcs_path: core/vendor/bin/phpcs
standard: phpcs.xml
fail_on_warnings: false