.gitignore: minor tweak #146
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: Quicktest | |
on: | |
# Run on pushes, including merges, to all branches except `main`. | |
push: | |
branches-ignore: | |
- main | |
paths-ignore: | |
- '**.md' | |
# Allow manually triggering the workflow. | |
workflow_dispatch: | |
# Cancels all previous workflow runs for the same branch that have not yet completed. | |
concurrency: | |
# The concurrency group contains the workflow name and the branch name. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
#### QUICK TEST STAGE #### | |
# This is a much quicker test which only runs the unit tests and linting against low/high | |
# supported PHP/PHPCS/WPCS combinations. | |
quicktest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- php_version: 'latest' | |
phpcs_version: 'dev-master' | |
wpcs_version: '2.3.0' | |
- php_version: 'latest' | |
phpcs_version: '3.7.2' | |
wpcs_version: '2.3.0' | |
- php_version: '5.4' | |
phpcs_version: 'dev-master' | |
wpcs_version: '2.3.0' | |
- php_version: '5.4' | |
phpcs_version: '3.7.2' | |
wpcs_version: '2.3.0' | |
name: "QTest${{ matrix.phpcs_version == 'dev-master' && ' + Lint' || '' }}: PHP ${{ matrix.php_version }} - PHPCS ${{ matrix.phpcs_version }} - WPCS ${{ matrix.wpcs_version }}" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# On stable PHPCS versions, allow for PHP deprecation notices. | |
# Unit tests don't need to fail on those for stable releases where those issues won't get fixed anymore. | |
- name: Setup ini config | |
id: set_ini | |
run: | | |
if [ "${{ matrix.phpcs_version }}" != "dev-master" ]; then | |
echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED, display_errors=On' >> $GITHUB_OUTPUT | |
else | |
echo 'PHP_INI=error_reporting=-1, display_errors=On' >> $GITHUB_OUTPUT | |
fi | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php_version }} | |
ini-values: ${{ steps.set_ini.outputs.PHP_INI }} | |
coverage: none | |
- name: 'Composer: adjust dependencies' | |
run: | | |
# Set the PHPCS version to test against. | |
composer require --no-update --no-scripts squizlabs/php_codesniffer:"${{ matrix.phpcs_version }}" --no-interaction | |
# Set the WPCS version to test against. | |
composer require --no-update --no-scripts wp-coding-standards/wpcs:"${{ matrix.wpcs_version }}" --no-interaction | |
# Install dependencies and handle caching in one go. | |
# @link https://github.com/marketplace/actions/install-composer-dependencies | |
- name: Install Composer dependencies - normal | |
if: ${{ startsWith( matrix.php_version, '8' ) == false && matrix.php_version != 'latest' }} | |
uses: ramsey/composer-install@v2 | |
with: | |
# Bust the cache at least once a month - output format: YYYY-MM. | |
custom-cache-suffix: $(date -u "+%Y-%m") | |
# For PHP 8.0 and higher, we need to install with ignore platform reqs as not all dependencies allow it. | |
- name: Install Composer dependencies - with ignore platform | |
if: ${{ startsWith( matrix.php_version, '8' ) || matrix.php_version == 'latest' }} | |
uses: ramsey/composer-install@v2 | |
with: | |
composer-options: --ignore-platform-req=php+ | |
custom-cache-suffix: $(date -u "+%Y-%m") | |
- name: Verify installed standards | |
run: vendor/bin/phpcs -i | |
- name: Lint against parse errors | |
if: matrix.phpcs_version == 'dev-master' | |
run: composer lint | |
- name: Run the unit tests - PHP 5.4 - 8.0 | |
if: ${{ matrix.php_version < '8.1' && matrix.php_version != 'latest' }} | |
run: composer test | |
- name: Run the unit tests - PHP 8.1+ | |
if: ${{ matrix.php_version >= '8.1' || matrix.php_version == 'latest'}} | |
run: composer test -- --no-configuration --dont-report-useless-tests | |
env: | |
PHPCS_IGNORE_TESTS: 'PHPCompatibility,WordPress' |