Bp 4161 klarna kp processing status logged in comment history #3726
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: M2 Coding Standard | |
on: [push, pull_request] | |
jobs: | |
phpcs: | |
name: M2 Code Analysis | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: extdn/github-actions-m2/magento-coding-standard/8.1@master | |
with: | |
phpcs_severity: 10 | |
phpcs_report: full | |
phpmd: | |
name: M2 Mess Detection | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: extdn/github-actions-m2/magento-mess-detector@master | |
phpstan: | |
name: M2 PHPStan | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: extdn/github-actions-m2/magento-phpstan@master | |
with: | |
composer_name: buckaroo/magento2 |