ci: add SVN installation step for WordPress test suite in GitHub Actions #222
Workflow file for this run
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: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
name: phpcs | |
env: | |
WP_TESTS_DIR: /tmp/wordpress-tests-lib | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
tools: composer:v2, cs2pr | |
- name: Check PHP Version | |
run: php -v | |
- name: Composer install | |
run: composer install --optimize-autoloader --prefer-dist | |
- name: Coding Sniffs. | |
run: ./vendor/bin/phpcs --report-full --report-checkstyle=/tmp/phpcs-report.xml | |
- name: Show PHPCS results in PR | |
if: ${{ always() }} | |
run: cs2pr /tmp/phpcs-report.xml |