我有 3 个测试命令要在构建后运行,但我想根据 git 提交消息中的关键字运行这些命令。
Commit message: 'New changes [CoreTest]'
if(CoreTest){
Run coreTest shell command for spoon
}else if(CloudTest){
Run CloudTest shell command for spoon
}
else{
AllTests shell command for spoon
}
我有 3 个测试命令要在构建后运行,但我想根据 git 提交消息中的关键字运行这些命令。
Commit message: 'New changes [CoreTest]'
if(CoreTest){
Run coreTest shell command for spoon
}else if(CloudTest){
Run CloudTest shell command for spoon
}
else{
AllTests shell command for spoon
}