47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
name: Run code sniff on PR
|
|
on:
|
|
pull_request
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
test:
|
|
name: Code sniff (PHP 7.4, WP Latest)
|
|
timeout-minutes: 15
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 100
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: 7.4
|
|
tools: composer, cs2pr
|
|
|
|
- name: Tool versions
|
|
run: |
|
|
php --version
|
|
composer --version
|
|
|
|
- uses: ./.github/actions/cache-deps
|
|
with:
|
|
workflow_name: pr-code-sniff
|
|
workflow_cache: ${{ secrets.WORKFLOW_CACHE }}
|
|
|
|
- name: Install and Build
|
|
uses: ./.github/actions/install-build
|
|
|
|
- name: Run code sniff
|
|
continue-on-error: true
|
|
working-directory: plugins/woocommerce
|
|
run: ./tests/bin/phpcs.sh "${{ github.event.pull_request.base.sha }}" "${{ github.event.after }}"
|
|
|
|
- name: Show PHPCS results in PR
|
|
working-directory: plugins/woocommerce
|
|
run: cs2pr ./phpcs-report.xml
|