File tree 3 files changed +27
-22
lines changed
3 files changed +27
-22
lines changed Original file line number Diff line number Diff line change
1
+ name : spellcheck
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ - name : Set up Python
13
+ uses : actions/setup-python@v1
14
+ with :
15
+ python-version : 3.7
16
+ - name : Install dependencies
17
+ run : |
18
+ sudo apt update && sudo apt install -y enchant
19
+ python -m pip install --upgrade setuptools
20
+ python -m pip install --upgrade pyenchant sphinx-rtd-theme sphinxcontrib-spelling
21
+ - name : Check spelling
22
+ # show list of misspelled words
23
+ run : |
24
+ make spelling
25
+ if [[ -s "_build/spelling/output.txt" ]]; then cat "_build/spelling/output.txt"; fi
26
+ if [[ -s "_build/spelling/output.txt" ]]; then false; fi
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
# You can set these variables from the command line.
4
4
SPHINXOPTS =
5
- SPHINXBUILD = pipenv run sphinx-build
5
+ SPHINXBUILD = sphinx-build
6
6
PAPER =
7
7
BUILDDIR = _build
8
8
You can’t perform that action at this time.
0 commit comments