GH Actions: stop testing with PHP 8.4 against Composer < current #275
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 to feature branches. | |
push: | |
branches-ignore: | |
- main | |
# 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 integration tests against a limited set of | |
# supported PHP/PHPCS combinations. | |
quicktest: | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
matrix: | |
php: | |
- '5.4' | |
- '7.2' | |
- 'latest' | |
composer: | |
- 'v1' | |
- 'v2' | |
os: | |
- 'ubuntu-latest' | |
- 'windows-latest' | |
# Installing on Windows with PHP 5.4 runs into all sorts of problems (which are not ours). | |
# Exclude the Windows PHP 5.4 builds and replace them with PHP 5.5/5.6 for the same. | |
# @link https://github.com/PHPCSStandards/composer-installer/issues/181 | |
# @link https://github.com/PHPCSStandards/composer-installer/pull/213 | |
exclude: | |
- php: '5.4' | |
os: 'windows-latest' | |
include: | |
- php: '5.5' | |
composer: 'v2' | |
os: 'windows-latest' | |
- php: '5.6' | |
composer: 'v1' | |
os: 'windows-latest' | |
name: "Quick test" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: json, zip | |
ini-values: zend.assertions=1, error_reporting=-1, display_errors=On | |
tools: "composer:${{ matrix.composer }}" | |
coverage: none | |
env: | |
fail-fast: true | |
# 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: | |
composer-options: '--optimize-autoloader' | |
# Bust the cache at least once a month - output format: YYYY-MM. | |
custom-cache-suffix: $(date -u "+%Y-%m") | |
- name: Run integration tests | |
run: vendor/bin/phpunit --no-coverage |