Skip to content

deps(composer): bump rector/rector from 2.3.1 to 2.3.4 #109

deps(composer): bump rector/rector from 2.3.1 to 2.3.4

deps(composer): bump rector/rector from 2.3.1 to 2.3.4 #109

Workflow file for this run

name: PHPUnit
on:
push:
branches: [ main ]
pull_request:
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ['8.2', '8.3', '8.4', '8.5']
steps:
- uses: actions/checkout@v6
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: pcov
- uses: actions/cache@v5
with:
path: vendor
key: composer-${{ matrix.php-version }}-${{ hashFiles('composer.lock', 'composer.json') }}
restore-keys: |
composer-${{ matrix.php-version }}-
- run: composer install --prefer-dist --no-interaction --no-progress
- run: vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ github.token }}
parallel: true
flag-name: phpunit-${{ join(matrix.*, '-') }}
env:
COVERALLS_REPO_TOKEN: ${{ secrets.CI_COVERALLS_TOKEN }}
finish:
needs: phpunit
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: "phpunit-8.1,phpunit-8.2,phpunit-8.3,phpunit-8.4"