-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix the spellchecker more (#323)
* chore: try to fix the spellchecker more * chore: more spellchecker fixes * chore: fix yaml issues * chore: add a few more words to the wordlist
- Loading branch information
1 parent
1cebdb3
commit 8abe577
Showing
3 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,18 @@ jobs: | |
root: main/.vuepress/dist | ||
extra: --ignore_re r'\ADuplicate ID "outbound-link-title".*' | ||
|
||
- name: Spellcheck | ||
uses: rojopolis/[email protected] | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.7 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip setuptools | ||
python -m pip install pyspelling | ||
- name: Install Aspell | ||
run: | | ||
sudo apt-get install aspell aspell-en | ||
- name: Spell check | ||
run: | | ||
python -m pyspelling |
File renamed without changes.
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