Merge pull request #4 from shaavan/241022-prettier #9
This file contains 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: Spell Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
spell-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install aspell | |
run: sudo apt-get install -y aspell aspell-en | |
- name: Install pyspelling | |
run: pip install pyspelling | |
- name: Run Spell Checker | |
run: pyspelling -c spellcheck.yaml |