@@ -59,33 +59,33 @@ jobs:
5959
6060 # START: Check practical exercise
6161
62- - name : Check for an explanation of data.cob
63- id : check-explanation-data-cob
62+ - name : Check for System Overview section
63+ id : check-system-overview
6464 continue-on-error : true
6565 uses : skills/action-keyphrase-checker@v1
6666 with :
67- text-file : docs/README .md
68- keyphrase : ' data.cob '
67+ text-file : docs/SPECIFICATION .md
68+ keyphrase : ' overview '
6969 minimum-occurrences : 1
7070 case-sensitive : false
7171
72- - name : Check for an explanation of main.cob
73- id : check-explanation-main-cob
72+ - name : Check for Business Rules section
73+ id : check-business-rules
7474 continue-on-error : true
7575 uses : skills/action-keyphrase-checker@v1
7676 with :
77- text-file : docs/README .md
78- keyphrase : ' main.cob '
77+ text-file : docs/SPECIFICATION .md
78+ keyphrase : ' business rule '
7979 minimum-occurrences : 1
8080 case-sensitive : false
8181
82- - name : Check for an explanation of operations.cob
83- id : check-explanation- operations-cob
82+ - name : Check for Operations documentation
83+ id : check-operations
8484 continue-on-error : true
8585 uses : skills/action-keyphrase-checker@v1
8686 with :
87- text-file : docs/README .md
88- keyphrase : ' operations.cob '
87+ text-file : docs/SPECIFICATION .md
88+ keyphrase : ' operation '
8989 minimum-occurrences : 1
9090 case-sensitive : false
9191
9494 continue-on-error : true
9595 uses : skills/action-keyphrase-checker@v1
9696 with :
97- text-file : docs/README .md
97+ text-file : docs/SPECIFICATION .md
9898 keyphrase : ' mermaid'
9999 minimum-occurrences : 1
100100 case-sensitive : false
@@ -110,13 +110,13 @@ jobs:
110110 vars : |
111111 step_number: 2
112112 results_table:
113- - description: "Check README .md for an explanation of data.cob "
114- passed: ${{ steps.check-explanation-data-cob .outcome == 'success' }}
115- - description: "Check README .md for an explanation of main.cob "
116- passed: ${{ steps.check-explanation-main-cob .outcome == 'success' }}
117- - description: "Check README .md for an explanation of operations.cob "
118- passed: ${{ steps.check-explanation- operations-cob .outcome == 'success' }}
119- - description: "Check README .md for a mermaid diagram"
113+ - description: "Check SPECIFICATION .md for a System Overview section "
114+ passed: ${{ steps.check-system-overview .outcome == 'success' }}
115+ - description: "Check SPECIFICATION .md for Business Rules documentation "
116+ passed: ${{ steps.check-business-rules .outcome == 'success' }}
117+ - description: "Check SPECIFICATION .md for Operations documentation "
118+ passed: ${{ steps.check-operations.outcome == 'success' }}
119+ - description: "Check SPECIFICATION .md for a mermaid diagram"
120120 passed: ${{ steps.check-mermaid-diagram.outcome == 'success' }}
121121
122122 # END: Check practical exercise
0 commit comments