mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
Add workflow action to validate BOM
This commit is contained in:
parent
b526dacd7c
commit
cacba11090
27
.github/workflows/style.yml
vendored
Normal file
27
.github/workflows/style.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
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}
|
Loading…
Reference in New Issue
Block a user