-
Notifications
You must be signed in to change notification settings - Fork 429
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix building of docs, build them in CI too (#900)
- Loading branch information
1 parent
1c5f970
commit 52c1708
Showing
6 changed files
with
55 additions
and
42 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 |
---|---|---|
|
@@ -63,3 +63,20 @@ jobs: | |
python -m pip install coverage | ||
python -m pip install -r requirements/common.pip | ||
- run: coverage run --source=django_tables2 manage.py test | ||
|
||
build_docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: 3.9 | ||
cache: 'pip' | ||
cache-dependency-path: | | ||
docs/requirements.txt | ||
common/requirements.txt | ||
- name: Install and build | ||
run: | | ||
cd docs | ||
python -m pip install -r requirements.txt | ||
make html |
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
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
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
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
-r ../requirements/common.pip | ||
Sphinx==2.2.0 | ||
sphinx_rtd_theme==0.5.0 | ||
recommonmark==0.4.0 | ||
Sphinx==6.1.3 | ||
sphinx_rtd_theme==1.2.0 | ||
django | ||
sphinxcontrib-spelling==5.2.0 | ||
pyenchant==3.1.1 | ||
sphinxcontrib-spelling==8.0.0 | ||
pyenchant==3.2.2 | ||
myst-parser==0.19.1 |