Accept namespaces in sitePassByRefFunctions #428
Workflow file for this run
This file contains hidden or 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: CS and QA | |
on: | |
# Run on all pushes and on all pull requests. | |
# Prevent the build from running when there are only irrelevant changes. | |
push: | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
# 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: | |
checkcs: | |
name: 'Basic CS and QA checks' | |
runs-on: ubuntu-latest | |
env: | |
XMLLINT_INDENT: ' ' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 'latest' | |
coverage: none | |
tools: cs2pr | |
# Using PHPCS `master` as an early detection system for bugs upstream. | |
- name: 'Composer: adjust dependencies' | |
run: composer require --no-update squizlabs/php_codesniffer:"dev-master" | |
# Install dependencies and handle caching in one go. | |
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer | |
- name: Install Composer dependencies | |
uses: "ramsey/composer-install@v3" | |
with: | |
# Bust the cache at least once a month - output format: YYYY-MM. | |
custom-cache-suffix: $(date -u "+%Y-%m") | |
# Validate the XML file. | |
- name: Validate ruleset against schema | |
uses: phpcsstandards/xmllint-validate@v1 | |
with: | |
pattern: "VariableAnalysis/ruleset.xml" | |
xsd-file: "vendor/squizlabs/php_codesniffer/phpcs.xsd" | |
# Check the code-style consistency of the XML file. | |
# Note: this needs xmllint, but that will be installed via the phpcsstandards/xmllint-validate action runner in the previous step. | |
- name: Check XML code style | |
run: diff -B ./VariableAnalysis/ruleset.xml <(xmllint --format "./VariableAnalysis/ruleset.xml") | |
# Check the code-style consistency of the PHP files. | |
- name: Check PHP code style | |
id: phpcs | |
run: composer lint -- --no-cache --report-full --report-checkstyle=./phpcs-report.xml | |
- name: Show PHPCS results in PR | |
if: ${{ always() && steps.phpcs.outcome == 'failure' }} | |
run: cs2pr ./phpcs-report.xml | |
static-analysis: | |
name: "PHPStan & Psalm" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.1" | |
coverage: none | |
# Install dependencies and handle caching in one go. | |
# Dependencies need to be installed to make sure the PHPUnit classes are recognized. | |
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer | |
- name: Install Composer dependencies | |
uses: "ramsey/composer-install@v3" | |
with: | |
# Bust the cache at least once a month - output format: YYYY-MM. | |
custom-cache-suffix: $(date -u "+%Y-%m") | |
- name: Run Static Analysis | |
run: composer static-analysis | |
perf-guard: | |
name: "Basic Performance Guard" | |
runs-on: ubuntu-latest | |
env: | |
MAX_PHPCS_PERF_SECS: 0.4 | |
PHPCS_OUTPUT_FILE: "phpcs-report-file" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.1" | |
coverage: none | |
# Install dependencies and handle caching in one go. | |
# Dependencies need to be installed to make sure the PHPUnit classes are recognized. | |
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer | |
- name: Install Composer dependencies | |
uses: "ramsey/composer-install@v3" | |
with: | |
# Bust the cache at least once a month - output format: YYYY-MM. | |
custom-cache-suffix: $(date -u "+%Y-%m") | |
- name: Download performance test fixture | |
run: wget https://raw.githubusercontent.com/PHPMailer/PHPMailer/refs/tags/v6.9.3/src/PHPMailer.php | |
- name: Run performance report | |
id: performance_report | |
run: | | |
PHPCS_OUTPUT=$(./vendor/bin/phpcs --standard=VariableAnalysis --report=Performance ./PHPMailer.php) | |
echo "${PHPCS_OUTPUT}" | |
echo "${PHPCS_OUTPUT}" > ${{ env.PHPCS_OUTPUT_FILE }} | |
- name: Parse performance report | |
id: parse_performance_report | |
run: | | |
TOTAL_SECS=$(cat ${{ env.PHPCS_OUTPUT_FILE }} | grep -Eo 'TOTAL SNIFF PROCESSING TIME[ ]+[0-9.]+'|awk '{ print $5 }') | |
echo "Performance time was ${TOTAL_SECS} (max ${{ env.MAX_PHPCS_PERF_SECS }})" | |
echo "PHPCS_PERF_SECS=${TOTAL_SECS}" >> $GITHUB_OUTPUT | |
# fromJSON is used to convert strings to numbers in github actions. | |
# @link https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/evaluate-expressions-in-workflows-and-actions#operators | |
- name: Compare performance to baseline | |
if: ${{ fromJSON( steps.parse_performance_report.outputs.PHPCS_PERF_SECS ) > fromJSON( env.MAX_PHPCS_PERF_SECS ) }} | |
run: exit 1 |