| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
PHP Mess Detector (PHPMD) takes a given PHP source code base and looks for several potential problems within that source. These problems can be things like:
name: CI
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Composer install
uses: php-actions/composer@v6
- name: PHP Mess Detector
uses: php-actions/phpmd@v1
with:
php_version: 8.4
path: src/
output: text
ruleset: test/phpmd/ruleset.xmlThis action is released with semantic version numbers, but also tagged so the latest major release's tag always points to the latest release within the matching major version.
Please feel free to use uses: php-actions/phpmd@v1 to always run the latest version of v1, or uses: php-actions/phpmd@v1.0.0 to specify the exact release.
The following configuration options are available:
If you require other configurations of PHPMD, please request them in the Github issue tracker.
If you found this repository helpful, please consider sponsoring the developer.
| Back | FazBrowse Home | New Git URL |