Skip to content

Make calls to logger only when the logger exists #12

Make calls to logger only when the logger exists

Make calls to logger only when the logger exists #12

Workflow file for this run

name: PHP-Test
on:
push:
pull_request:
jobs:
Static-Analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
uses: php-actions/composer@v6
with:
command: validate
php_version: 8.0
- name: Install dependencies
uses: php-actions/composer@v6
with:
command: install --prefer-dist
php_version: 8.0
- name: PHPStan Static Analysis
uses: php-actions/phpstan@v2
with:
command: analyse
configuration: phpstan.dist.neon
memory_limit: 128M
php_version: 8.0