Skip to content

Add support for "Track users impacted with errors inbox" feature #25

Add support for "Track users impacted with errors inbox" feature

Add support for "Track users impacted with errors inbox" feature #25

Workflow file for this run

on:
pull_request: ~
push: ~
jobs:
static:
name: Static Analysis
strategy:
matrix:
operating-system:
- 'ubuntu-latest'
php-version:
- '8.2'
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: ${{ matrix.php-version }}
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}
restore-keys: |
composer-${{ runner.os }}-${{ matrix.php-version }}-
composer-${{ runner.os }}-
composer-
- name: Download dependencies
run: composer update --no-interaction --no-progress --optimize-autoloader
- name: PHPStan
run: ./vendor/bin/phpstan
- name: PHP-CS-Fixer
run: ./vendor/bin/php-cs-fixer fix --dry-run --stop-on-violation