Merge pull request #25 from kenjis/fix-QB-group_by #63
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: Coding Standards | |
on: | |
push: | |
branches: | |
- 1.x | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- phpcs.xml | |
pull_request: | |
branches: | |
- 1.x | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- phpcs.xml | |
- '.github/workflows/**' | |
workflow_dispatch: | |
jobs: | |
coding-standards: | |
name: Coding Standards | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
tools: cs2pr | |
coverage: none | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get composer cache directory | |
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV | |
- name: Cache composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.COMPOSER_CACHE_FILES_DIR }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer update --no-interaction --no-progress --prefer-dist | |
- name: Validate composer.json | |
run: composer validate --strict | |
- name: Run PHP_CodeSniffer | |
run: ./vendor/bin/phpcs -q --no-colors --report=checkstyle src tests | cs2pr |