Skip to content

Moved sentry logging to a monolog handler (2.4.8 compatibility) (#165) #7

Moved sentry logging to a monolog handler (2.4.8 compatibility) (#165)

Moved sentry logging to a monolog handler (2.4.8 compatibility) (#165) #7

Workflow file for this run

name: Code Style
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.2, 8.3]
stability: [prefer-lowest, prefer-stable]
name: PHPCS - P${{ matrix.php }} - ${{ matrix.stability }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- 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, fileinfo
coverage: none
- name: Install dependencies
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Analyse
run: composer run phpcs