Added support for exception-free TOML; resolves #436 #1553
Workflow file for this run
This file contains hidden or 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: code-checks | |
on: [ push, pull_request ] | |
jobs: | |
check-includes-are-relative: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- shell : bash | |
run: | | |
cd include | |
errors=0 | |
for file in $(find . -name '*.hpp'); do | |
while read -r line; do | |
if [[ "$line" = "" ]]; then continue; fi | |
what=$(printf "$line" | sed -n 's/^.*"\(.*\)"\s*$/\1/p') | |
pushd $(dirname $(readlink -f "$file" )) > /dev/null | |
if ! [[ -e "$what" ]]; then | |
where=$(printf "$line" | grep -oP '^.*:[0-9]+') | |
echo Non-relative include of $what @ $where | |
((errors++)) | |
fi | |
popd > /dev/null | |
done <<< $(grep -HnoP '#include ".*"' $file) | |
done | |
exit $errors |