diff --git a/ci/code_checks.sh b/ci/code_checks.sh index 45b7db74fa409..13e232610c929 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -237,6 +237,14 @@ if [[ -z "$CHECK" || "$CHECK" == "patterns" ]]; then invgrep -RI --exclude=\*.{svg,c,cpp,html,js} --exclude-dir=env "\s$" * RET=$(($RET + $?)) ; echo $MSG "DONE" unset INVGREP_APPEND + + MSG = 'Check files that in pandas/doc/source that use standardized documentation' ; echo $MSG + for entry in $(find ../doc/source/ -type f) + do + if grep -q Pandas "$entry" || grep -q *pandas* "$entry" ; then + echo "$entry" + fi + done fi ### CODE ### @@ -378,4 +386,4 @@ if [[ -z "$CHECK" || "$CHECK" == "typing" ]]; then fi -exit $RET +exit $RET \ No newline at end of file