更新自动化规则
Some checks failed
Tests / PHP (pull_request) Failing after 1m13s

Signed-off-by: XiaoLFeng <gm@x-lf.cn>
This commit is contained in:
筱锋xiao_lfeng 2023-06-30 13:20:56 +08:00
parent 12d634b593
commit 721e1e90c5

View File

@ -28,6 +28,15 @@ jobs:
coverage: none
tools: phpmd
- name: '运行PHPMD'
- name: '检查是否存在未使用代码'
run: phpmd ./ text unusedcode
- name: '检查命名问题'
run: phpmd ./ text naming
- name: '检查设计问题'
run: phpmd ./ text naming design
- name: '检查代码规模是否过大'
run: phpmd ./ text codesize
continue-on-error: true