Merge remote-tracking branch 'upstream/develop' into 4.8 #10056
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # When a PR is opened or a push is made, check code | |
| # for duplication with PHP Copy/Paste Detector. | |
| name: PHPCPD | |
| on: | |
| pull_request: | |
| branches: | |
| - 'develop' | |
| - '4.*' | |
| paths: | |
| - 'app/**.php' | |
| - 'public/**.php' | |
| - 'system/**.php' | |
| - '.github/workflows/test-phpcpd.yml' | |
| push: | |
| branches: | |
| - 'develop' | |
| - '4.*' | |
| paths: | |
| - 'app/**.php' | |
| - 'public/**.php' | |
| - 'system/**.php' | |
| - '.github/workflows/test-phpcpd.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| phpcpd: | |
| # Note: Reusable workflow SHA must be manually updated. Check for updates with: | |
| # git ls-remote https://github.com/codeigniter4/.github main | head -1 | |
| uses: codeigniter4/.github/.github/workflows/phpcpd.yml@0ad5e1bc5620281e766d3267205dc4c22f4ac0ee # main | |
| with: | |
| dirs: "app/ public/ system/" | |
| options: >- | |
| --exclude system/Test | |
| --exclude system/ThirdParty | |
| --exclude system/Database/SQLSRV/Builder.php | |
| --exclude system/Database/SQLSRV/Forge.php | |
| --exclude system/Database/MySQLi/Builder.php | |
| --exclude system/Database/OCI8/Builder.php | |
| --exclude system/Database/Postgre/Builder.php | |
| --exclude system/Debug/Exceptions.php | |
| --exclude system/HTTP/SiteURI.php | |
| --exclude system/Validation/Rules.php | |
| --exclude system/Autoloader/Autoloader.php | |
| --exclude system/Config/Filters.php |