Skip to content

Updated package fmasa/messenger #36

Updated package fmasa/messenger

Updated package fmasa/messenger #36

Workflow file for this run

name: Coding style
on:
push:
branches:
- 0.2.x
tags:
- v*
pull_request:
branches:
- 0.2.x
jobs:
php-cs-fixer:
name: Php-Cs-Fixer
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
tools: composer:v2
- name: Install dependencies
run: composer update --no-progress --prefer-dist --prefer-stable --optimize-autoloader --quiet
- name: Php-Cs-Fixer
run: vendor/bin/php-cs-fixer fix -v --dry-run
php-stan:
name: PHPStan
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
tools: composer:v2
- name: Install dependencies
run: composer update --no-progress --prefer-dist --prefer-stable --optimize-autoloader --quiet
- name: PhpStan
run: vendor/bin/phpstan analyse