Skip to content

Used the RunnableInterface provided by the package php-etl/job-contracts #68

Used the RunnableInterface provided by the package php-etl/job-contracts

Used the RunnableInterface provided by the package php-etl/job-contracts #68

Workflow file for this run

name: PHPStan level 8
on: push
jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: '**/vendor'
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- uses: php-actions/composer@v6
with:
args: --prefer-dist
php_version: '8.2'
- name: PHPStan
uses: php-actions/phpstan@v3
with:
path: src/
level: 8
php_version: '8.2'