Skip to content

Add in the means to edit the footer and also to use the standard or A… #199

Add in the means to edit the footer and also to use the standard or A…

Add in the means to edit the footer and also to use the standard or A… #199

name: PHP Coding Standards
on: pull_request
jobs:
build:
strategy:
matrix:
php: [ 8.0 ] # Replace this with the version used on the production site.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup proper PHP version
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache 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 run-script packages-install
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
- name: Run PHP_CodeSniffer
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
$GITHUB_WORKSPACE/vendor/bin/phpcs --standard=$GITHUB_WORKSPACE/vendor/a8cteam51/team51-configs/quality-tools/phpcs.xml.dist --basepath=$GITHUB_WORKSPACE $file
done