GitHub action for PHP applications to find forgotten variable dumps.
Not Required The type of the VarDump. Valid values: none, ladybug, tracy, zend, doctrine, symfony, laravel. Default "none"
.
Not Required The folders to be excluded in check.
Not Required The file extensions to be checked. Default "php,phpt,php7"
.
on: [push]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: Test Itself
steps:
- name: Check 1
id: check1
uses: umutphp/php-var-dump-check-action@v1
with:
checktype: 'laravel'
exclude: 'vendor,test'
extensions: 'php'
on: [push]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: Test Itself
steps:
- name: Check 1
id: check1
uses: umutphp/php-var-dump-check-action@v1
on: [push]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: Test Itself
steps:
- name: Check 1
id: check1
uses: umutphp/php-var-dump-check-action@v1
with:
checktype: 'none'
exclude: 'vendor,test'
extensions: 'php'
- name: Check 2
id: check2
uses: umutphp/php-var-dump-check-action@v1
with:
checktype: 'laravel'
exclude: 'vendor,test'
extensions: 'php'