From 00ea975708cc9228889a742053b0e3f7bd704ce4 Mon Sep 17 00:00:00 2001 From: Kelvin Rodriguez <krodriguez@usgs.gov> Date: Tue, 5 Dec 2023 15:45:41 -0700 Subject: [PATCH] Update ci_testing.yml --- .github/workflows/ci_testing.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_testing.yml b/.github/workflows/ci_testing.yml index cd04768..0cd0ae5 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: -- GitLab