Last active
December 14, 2023 18:21
-
-
Save brianjo/9b2f6bf18e4e607675dca96723fa2120 to your computer and use it in GitHub Desktop.
Spell Check - From LLAMA2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: SpellCheck | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-20.04 | |
| name: Lint changed files | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 # OR "2" -> To retrieve the preceding commit. | |
| - name: Check links in all markdown files | |
| uses: gaurav-nelson/[email protected] | |
| with: | |
| use-verbose-mode: 'yes' | |
| config-file: "scripts/markdown_link_check_config.json" | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/[email protected] | |
| with: | |
| files: | | |
| **/*.py | |
| spellcheck: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get install aspell aspell-en | |
| pip install pyspelling | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/[email protected] | |
| with: | |
| files: | | |
| **/*.md | |
| - name: Check spellings | |
| run: | | |
| sources="" | |
| for file in ${{ steps.changed-files.outputs.all_changed_files }}; do | |
| sources="${sources} -S $file" | |
| done | |
| if [ ! "$sources" ]; then | |
| echo "No files to spellcheck" | |
| else | |
| pyspelling -c $GITHUB_WORKSPACE/scripts/spellcheck_conf/spellcheck.yaml --name Markdown $sources | |
| fi | |
| - name: In the case of misspellings | |
| if: ${{ failure() }} | |
| run: | | |
| echo "Please fix the misspellings. If you are sure about some of them, " | |
| echo "so append those to scripts/spellcheck_conf/wordlist.txt" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment