diff --git a/.github/workflows/ci_testing.yml b/.github/workflows/ci_testing.yml
index cd04768c0656808419a3b9bd70004ea5906a8c46..0cd0ae543ab919c9e356f98747c9d01961611269 100644
--- a/.github/workflows/ci_testing.yml
+++ b/.github/workflows/ci_testing.yml
@@ -52,9 +52,11 @@ jobs:
       - name: Build Website
         run: |
           mkdocs build
-      - name: spell check 
+      - name: codespell Check  
         run: | 
           codespell site/
+      - name: Grammar Check
+        run: |
           git diff --name-only origin/main | grep -e .md -e .MD | sed 's/^/"/;s/$/"/' | xargs -t -L1 gramma check -p || true
 
   Link-Check: