Trim the Discourse comment body to 50 words #119
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: 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 |