mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 12:58:25 +01:00
f68a79e268
This updates the following GitHub Actions to their latest versions: - `wow-actions/welcome` - `actions/setup-node` - `actions/cache` See #62221. git-svn-id: https://develop.svn.wordpress.org/trunk@59354 602fd350-edb4-49c9-b593-d223f7449a82
86 lines
3.0 KiB
YAML
86 lines
3.0 KiB
YAML
##
|
|
# A reusable workflow that runs PHP compatibility tests.
|
|
##
|
|
name: PHP Compatibility
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
php-version:
|
|
description: 'The PHP version to use.'
|
|
required: false
|
|
type: 'string'
|
|
default: 'latest'
|
|
|
|
jobs:
|
|
# Runs PHP compatibility tests.
|
|
#
|
|
# Violations are reported inline with annotations.
|
|
#
|
|
# Performs the following steps:
|
|
# - Checks out the repository.
|
|
# - Sets up PHP.
|
|
# - Logs debug information.
|
|
# - Configures caching for PHP compatibility scans.
|
|
# - Installs Composer dependencies.
|
|
# - Make Composer packages available globally.
|
|
# - Runs the PHP compatibility tests.
|
|
# - Generate a report for displaying issues as pull request annotations.
|
|
# - Ensures version-controlled files are not modified or deleted.
|
|
php-compatibility:
|
|
name: Run compatibility checks
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
timeout-minutes: 20
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
with:
|
|
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
|
|
|
|
- name: Set up PHP
|
|
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
|
|
with:
|
|
php-version: ${{ inputs.php-version }}
|
|
coverage: none
|
|
tools: cs2pr
|
|
|
|
- name: Log debug information
|
|
run: |
|
|
composer --version
|
|
|
|
# This date is used to ensure that the PHP compatibility cache is cleared at least once every week.
|
|
# http://man7.org/linux/man-pages/man1/date.1.html
|
|
- name: "Get last Monday's date"
|
|
id: get-date
|
|
run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> $GITHUB_OUTPUT
|
|
|
|
- name: Cache PHP compatibility scan cache
|
|
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
|
|
with:
|
|
path: .cache/phpcompat.json
|
|
key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-php-${{ inputs.php-version }}-phpcompat-cache-${{ hashFiles('**/composer.json', 'phpcompat.xml.dist') }}
|
|
|
|
# Since Composer dependencies are installed using `composer update` and no lock file is in version control,
|
|
# passing a custom cache suffix ensures that the cache is flushed at least once per week.
|
|
- name: Install Composer dependencies
|
|
uses: ramsey/composer-install@57532f8be5bda426838819c5ee9afb8af389d51a # v3.0.0
|
|
with:
|
|
custom-cache-suffix: ${{ steps.get-date.outputs.date }}
|
|
|
|
- name: Make Composer packages available globally
|
|
run: echo "${PWD}/vendor/bin" >> $GITHUB_PATH
|
|
|
|
- name: Run PHP compatibility tests
|
|
id: phpcs
|
|
run: phpcs --standard=phpcompat.xml.dist --report-full --report-checkstyle=./.cache/phpcs-compat-report.xml
|
|
|
|
- name: Show PHPCompatibility results in PR
|
|
if: ${{ always() && steps.phpcs.outcome == 'failure' }}
|
|
run: cs2pr ./.cache/phpcs-compat-report.xml
|
|
|
|
- name: Ensure version-controlled files are not modified or deleted
|
|
run: git diff --exit-code
|