避免kBroadcastLogEvent被外部引用新增接口,Assert_Throw实现从zlmediakit迁移置此,两者均依赖 #123
Workflow file for this run
This file contains 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
name: style check | |
on: [pull_request] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# with all history | |
fetch-depth: 0 | |
- name: Validate BOM | |
run: | | |
ret=0 | |
for i in $(git diff --name-only origin/${GITHUB_BASE_REF}...${GITHUB_SHA}); do | |
if [ -f ${i} ]; then | |
case ${i} in | |
*.c|*.cc|*.cpp|*.h) | |
if file ${i} | grep -qv BOM; then | |
echo "Missing BOM in ${i}" && ret=1; | |
fi | |
;; | |
esac | |
fi | |
done | |
exit ${ret} |