Declare support for older psr/simple-cache version #7
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: 4.8.x on PHP 8.x | |
# Run this workflow every time a new commit pushed to your repository | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
push: | |
branches: ['4.8.x'] | |
paths-ignore: | |
- '*.md' | |
- '.github/**' | |
- 'scripts/**' | |
pull_request: | |
branches: ['4.8.x'] | |
paths-ignore: | |
- '*.md' | |
- '.github/**' | |
- 'scripts/**' | |
jobs: | |
run: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
php-version: [8.0, 8.1, 8.2] | |
os: ['ubuntu-latest'] | |
include: | |
- os: 'ubuntu-latest' | |
phpunit-version: '9.6.10' | |
composer-version: 'latest' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP ${{ matrix.php-version }} on ${{ matrix.os }} | |
uses: shivammathur/setup-php@verbose | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: mbstring, intl | |
ini-values: post_max_size=256M, max_execution_time=180 | |
coverage: xdebug | |
tools: phpunit:${{ matrix.phpunit-version }}, composer:${{ matrix.composer-version }} | |
- name: Install composer | |
run: composer install | |
- name: Run linting | |
run: vendor/bin/phpcs | |
- name: Run quality rules | |
run: vendor/bin/phpstan analyse src tests | |
- name: Run tests | |
run: XDEBUG_MODE=coverage && phpunit -v -c tests/phpunit.xml --coverage-text --strict-coverage --stop-on-risky | |
shell: bash | |
- name: Slack Notification | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: custom | |
fields: commit,repo,ref,author | |
custom_payload: | | |
{ | |
attachments: [{ | |
color: '${{ job.status }}' === 'success' ? 'good' : '${{ job.status }}' === 'failure' ? 'danger' : 'warning', | |
text: `${process.env.AS_AUTHOR} has pushed ${process.env.AS_COMMIT} in ${process.env.AS_REPO} with test status indicating ${{ job.status }}.`, | |
}] | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
MATRIX_CONTEXT: ${{ toJson(matrix) }} | |
if: always() # Pick up events even if the job fails or is canceled. |