15 lines
275 B
YAML
15 lines
275 B
YAML
|
name: PHPStan
|
||
|
on: push
|
||
|
jobs:
|
||
|
phpstan:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: php-actions/composer@v6
|
||
|
with:
|
||
|
dev: yes
|
||
|
- uses: php-actions/phpstan@v3
|
||
|
with:
|
||
|
path: src
|
||
|
level: max
|