File tree Expand file tree Collapse file tree 5 files changed +49
-2
lines changed Expand file tree Collapse file tree 5 files changed +49
-2
lines changed Original file line number Diff line number Diff line change 1+ [* .yml ]
2+ indent_size = 2
Original file line number Diff line number Diff line change 1+ name : Spellcheck
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v2
16+ - name : Set up Python
17+ uses : actions/setup-python@v1
18+ with :
19+ python-version : 3.7
20+ - name : Install dependencies
21+ run : |
22+ python -m pip install --upgrade setuptools
23+ python -m pip install -r Resources/doc/requirements.txt
24+ - name : Run spell check
25+ run : |
26+ make -C Resources/doc/ spelling
27+ if [[ -s "Resources/doc/_build/spelling/output.txt" ]]; then echo "\nSpelling errors found\n" && cat "Resources/doc/_build/spelling/output.txt"; fi
28+ - name : Spellcheck
29+ run : |
30+ if [[ -s "Resources/doc/_build/spelling/output.txt" ]]; then cat "Resources/doc/_build/spelling/output.txt"; fi
31+ if [[ -s "Resources/doc/_build/spelling/output.txt" ]]; then false; fi
Original file line number Diff line number Diff line change 1+ version : 2
2+
3+ sphinx :
4+ configuration : Resources/doc/conf.py
5+
6+ # additional formats
7+ formats :
8+ - pdf
9+
10+ python :
11+ version : " 3.7"
12+ install :
13+ - requirements : Resources/doc/requirements.txt
Original file line number Diff line number Diff line change 5555
5656# General information about the project.
5757project = 'FOSHttpCacheBundle'
58- copyright = '2014-2018, David de Boer, David Buchmann'
58+ copyright = 'David de Boer, David Buchmann'
5959
6060# The version info for the project you're documenting, acts as replacement for
6161# |version| and |release|, also used in various other places throughout the
Original file line number Diff line number Diff line change 1+ sphinx == 1.8.5
12git+https://github.com/fabpot/sphinx-php.git
2- sphinx_rtd_theme
3+ sphinx-rtd-theme
34sphinxcontrib-spelling
45sphinxcontrib-phpdomain
56pyenchant
You can’t perform that action at this time.
0 commit comments