Skip to content

feat: Add filtering and standardized the communication process #103

feat: Add filtering and standardized the communication process

feat: Add filtering and standardized the communication process #103

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@v3
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Install Composer dependencies
uses: ramsey/composer-install@v2
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md
- name: Run PHP_CodeSniffer
run: composer run-script phpcs
- name: Run PHP Mess Detector
run: composer run-script github:phpmd
- name: Run PHPstan
run: composer run-script phpstan