Skip to content

chore: add composer lint command #31

chore: add composer lint command

chore: add composer lint command #31

Workflow file for this run

name: CI
on: [push]
jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
with:
args: --ignore-platform-reqs
- name: PHPStan Static Analysis
run: composer phpstan
php-cs-fixer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
with:
args: --ignore-platform-reqs
- name: PHP CS Fixer Static Analysis
run: composer php-cs-fixer
rector:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
with:
args: --ignore-platform-reqs
- name: Rector
run: composer rector