|
3 | 3 | Run PHP Code Sniffer tests in Github Actions.
|
4 | 4 | =============================================
|
5 | 5 |
|
6 |
| -// TODO. |
| 6 | +PHP_CodeSniffer is a script that tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard - an essential development tool that ensures your code remains clean and consistent. |
| 7 | + |
| 8 | +Common standards that can be checked include: |
| 9 | + |
| 10 | ++ Use of camel case in variable, function, class names |
| 11 | ++ Indentation rules, such as using tabs vs. spaces |
| 12 | ++ Forbidden functions, such as `die()` |
| 13 | ++ Checking that PHP files are side-effect-free |
| 14 | + |
| 15 | +Usage |
| 16 | +----- |
| 17 | + |
| 18 | +```yaml |
| 19 | +name: CI |
| 20 | + |
| 21 | +on: [push] |
| 22 | + |
| 23 | +jobs: |
| 24 | + build-and-test: |
| 25 | + runs-on: ubuntu-latest |
| 26 | + |
| 27 | + steps: |
| 28 | + - uses: actions/checkout@v3 |
| 29 | + |
| 30 | + - name: Composer install |
| 31 | + uses: php-actions/composer@v6 |
| 32 | + |
| 33 | + - name: PHP Code Sniffer |
| 34 | + uses: php-actions/phpcs@v1 |
| 35 | + with: |
| 36 | + php_version: 8.1 |
| 37 | + path: src/ |
| 38 | + standard: phpcs.xml |
| 39 | +``` |
| 40 | +
|
| 41 | +Version numbers |
| 42 | +--------------- |
| 43 | +
|
| 44 | +This 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. |
| 45 | +
|
| 46 | +Please feel free to use uses: php-actions/phpcs@v1 to always run the latest version of v1, or uses: php-actions/[email protected] to specify the exact release. |
| 47 | +
|
| 48 | +Inputs |
| 49 | +------ |
| 50 | +
|
| 51 | +The following configuration options are available: |
| 52 | +
|
| 53 | ++ `version` - What version of PHPCS to use |
| 54 | ++ `php_version` - What version of PHP to use |
| 55 | ++ `vendored_phpcs_path` - Path to a vendored phpcs binary |
| 56 | ++ `path` - One or more files and/or directories to check |
| 57 | ++ `standard` - The name or path of the coding standard to use |
| 58 | ++ `sniffs` - A comma separated list of sniff codes to include checking (all sniffs must be part of the specified standard) |
| 59 | ++ `exclude` - A comma separated list of sniff codes to exclude from checking (all sniffs must be part of the specified standard) |
| 60 | ++ `ignore` - A comma separated list of patterns to ignore files and directories |
| 61 | ++ `tab_width` - The number of spaces each tab represents |
| 62 | ++ `report` - Print either the "full", "xml", "checkstyle", "csv", "json", "junit", "emacs", "source", "summary", "diff", "svnblame", "gitblame", "hgblame" or "notifysend" report, or specify the path to a custom report class, (the "full" report is printed by default) |
| 63 | ++ `report_file` - Write the report to the specified file path |
| 64 | ++ `report_width` - How many columns wide screen reports should be printed or set to "auto" to use current screen width, where supported |
| 65 | ++ `basepath` - A path to strip from the front of file paths inside reports |
| 66 | ++ `bootstrap` - A comma separated list of files to run before processing begins |
| 67 | ++ `encoding` - The encoding of the files being checked (default is utf-8) |
| 68 | ++ `extensions` - "A comma separated list of file extensions to check. The type of the file can be specified using: ext/type e.g., module/php,es/js" |
| 69 | ++ `severity` - The minimum severity required to display an error or warning |
| 70 | ++ `error_severity` - The minimum severity required to display an error |
| 71 | ++ `warning_severity` - The minimum severity required to display a warning |
| 72 | ++ `args` - Extra arguments to pass to the phpcs binary |
| 73 | + |
| 74 | +If you require other configurations of PHPMD, please request them in the [Github issue tracker]. |
| 75 | + |
| 76 | +***** |
| 77 | + |
| 78 | +If you found this repository helpful, please consider [sponsoring the developer][sponsor]. |
| 79 | + |
| 80 | +[Github issue tracker]: https://github.com/php-actions/phpcs/issues |
| 81 | +[sponsor]: https://github.com/sponsors/g105b |
0 commit comments