Skip to content

Commit

Permalink
CI: Enforce newline at end of files
Browse files Browse the repository at this point in the history
  • Loading branch information
jserv committed Jun 21, 2024
1 parent b5709f8 commit 1d3943a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .ci/check-newline.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/env bash

set -e -u -o pipefail

ret=0
show=0
# Reference: https://medium.com/@alexey.inkin/how-to-force-newline-at-end-of-files-and-why-you-should-do-it-fdf76d1d090e
while IFS= read -rd '' f; do
if file --mime-encoding "$f" | grep -qv binary; then
tail -c1 < "$f" | read -r _ || show=1
if [ $show -eq 1 ]; then
echo "Warning: No newline at end of file $f"
ret=1
show=0
fi
fi
done < <(git ls-files -z examples)

exit $ret
1 change: 1 addition & 0 deletions .github/workflows/status-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
sudo apt-get install -q -y clang-format-12
sudo apt-get install -q -y cppcheck
sudo apt-get install -q -y gcc-11
.ci/check-newline.sh
.ci/check-format.sh
.ci/static-analysis.sh
.ci/build-n-run.sh
Expand Down
2 changes: 1 addition & 1 deletion examples/.clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Cpp03
TabWidth: 4
UseTab: Never
UseTab: Never

0 comments on commit 1d3943a

Please sign in to comment.