Skip to content

Pods 3.2.1.1

Pods 3.2.1.1 #418

name: 'PHP Compatibility'
on:
pull_request:
paths:
- 'classes/**.php'
- 'components/**.php'
- 'includes/**.php'
- 'src/**.php'
- 'sql/**.php'
- 'ui/**.php'
- '*.php'
- 'composer.json'
- '.github/workflows/php-compatibility.yml'
jobs:
phpcompatibility:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Run PHPCS inspection
uses: rtCamp/action-phpcs-code-review@v3
env:
GH_BOT_TOKEN: ${{ secrets.GH_BOT_TOKEN }}
PHPCS_STANDARD_FILE_NAME: .phpcs.compat.xml