├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml └── entrypoint.sh /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzweifel/laravel-phpinsights-action/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzweifel/laravel-phpinsights-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzweifel/laravel-phpinsights-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzweifel/laravel-phpinsights-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanzweifel/laravel-phpinsights-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -eu 4 | 5 | php artisan insights -n $* 6 | --------------------------------------------------------------------------------