Skip to content

Commit

Permalink
Fixing Grammar Check (#4)
Browse files Browse the repository at this point in the history
* Testing Grammar Check

* Typo lmao

* Minor change to trigger grammar check
  • Loading branch information
Kelvinrr authored Dec 7, 2023
1 parent 5c6441d commit 339a2ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ jobs:
codespell site/
- name: Grammar Check
run: |
git remote add origin https://github.com/DOI-USGS/asc-public-docs.git
git fetch origin main
# List the files that changed
git diff --name-only origin/main
# Grammar check only those files
git diff --name-only origin/main | grep -e .md -e .MD | sed 's/^/"/;s/$/"/' | xargs -t -L1 gramma check -p || true
Link-Check:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ applications you will need to use to perform this procedure:

- [**spiceinit**](https://isis.astrogeology.usgs.gov/Application/presentation/Tabbed/spiceinit/spiceinit.html)
: adds SPICE information to the input cube

0 comments on commit 339a2ef

Please sign in to comment.