Skip to content

Update version to 4.15.1 #701

Update version to 4.15.1

Update version to 4.15.1 #701

Workflow file for this run

name: Tests
permissions:
contents: read
on: [push, pull_request]
jobs:
tests:
name: Tests PHP ${{ matrix.php }}
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4]
experimental: [false]
composer-options: ['']
include:
- php: 7.4
composer-options: '--prefer-lowest'
experimental: false
- php: 8.2
analysis: true
- php: 8.5
experimental: true
composer-options: '--ignore-platform-req=php+'
- php: nightly
experimental: true
composer-options: '--ignore-platform-req=php+'
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
- name: Install dependencies with Composer
run: composer update --prefer-dist --no-progress --no-interaction --ansi ${{ matrix.composer-options }}
- name: Coding standards
if: matrix.analysis
run: vendor/bin/phpcs
- name: Static analysis
if: matrix.analysis
run: vendor/bin/phpstan
- name: Tests
run: vendor/bin/phpunit ${{ matrix.analysis && '--coverage-clover clover.xml' || '--no-coverage' }}
- name: Upload coverage results to Coveralls
if: matrix.analysis
uses: coverallsapp/github-action@v2
with:
flag-name: php-${{ matrix.php }}
files: clover.xml