Declare support for older psr/simple-cache version (#953) #9
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, 8.3] | |
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 |