Skip to content

build: bump phpstan/phpstan from 1.11.7 to 1.12.2 #131

build: bump phpstan/phpstan from 1.11.7 to 1.12.2

build: bump phpstan/phpstan from 1.11.7 to 1.12.2 #131

Workflow file for this run

name: Code Quality
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
- name: Run PHP_CodeSniffer
run: composer run-script phpcs
- name: Run PHP Mess Detector
run: composer run-script github:phpmd
# Disable PHP Stan until it is not broken anymore
# - name: Run PHPstan
# run: composer run-script phpstan