Skip to content

chore(deps-dev): bump friendsofphp/php-cs-fixer from 3.47.0 to 3.47.1 #1595

chore(deps-dev): bump friendsofphp/php-cs-fixer from 3.47.0 to 3.47.1

chore(deps-dev): bump friendsofphp/php-cs-fixer from 3.47.0 to 3.47.1 #1595

Workflow file for this run

name: tests
on: [ push, pull_request ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ windows-latest, ubuntu-latest ]
php: [ 8.1, 8.3 ]
dependency-version: [ prefer-stable ]
name: P${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, sockets, pcntl, fileinfo
coverage: xdebug
- name: Install dependencies
run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --ansi -v --ignore-platform-req=ext-pcntl
- name: Execute tests
run: composer test-c
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.4
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)