mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-01 21:50:13 +08:00
10 lines
219 B
Bash
10 lines
219 B
Bash
|
#!/bin/bash
|
||
|
# PR 检查脚本
|
||
|
set -e
|
||
|
|
||
|
CHECK_DIR="$(dirname "$0")/check"
|
||
|
# sh "${CHECK_DIR}/check.sh" # 需要依赖,暂时禁用
|
||
|
sh "${CHECK_DIR}/collect.sh"
|
||
|
sh "${CHECK_DIR}/analyze.sh"
|
||
|
sh "${CHECK_DIR}/identify.sh"
|