Skip to content

Commit f513f29

Browse files
author
awu42
committed
edited code_checks.sh
1 parent 50661c3 commit f513f29

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ci/code_checks.sh

+5
Original file line numberDiff line numberDiff line change
@@ -340,5 +340,10 @@ if [[ -z "$CHECK" || "$CHECK" == "typing" ]]; then
340340
RET=$(($RET + $?)) ; echo $MSG "DONE"
341341
fi
342342

343+
### VALIDATE TITLE CAPITALIZATION CONVENTION (Do I need an IF statement?)###
344+
MSG='Validate correct capitalization among titles in documentation' ; echo $MSG
345+
$BASE_DIR/scripts/validate_rst_title_capitalization.py $BASE_DIR/doc/source/development/contributing.rst
346+
$BASE_DIR/scripts/validate_rst_title_capitalization.py $BASE_DIR/doc/source/index.rst $BASE_DIR/doc/source/ecosystem.rst
347+
RET=$(($RET + $?)) ; echo $MSG "DONE"
343348

344349
exit $RET

0 commit comments

Comments
 (0)