File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed
Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 55 branches :
66 - main
77 tags : ' *'
8- pull_request :
98 workflow_dispatch :
109
1110permissions :
@@ -16,14 +15,18 @@ jobs:
1615 runs-on : ubuntu-latest
1716 steps :
1817 - uses : actions/checkout@v2
19-
18+ - name : Install LaTeX for math support
19+ run : |
20+ sudo apt-get update
21+ sudo apt-get install texlive-full
2022 - name : generate doc
2123 run : |
2224 pip install -r requirements.txt
2325 pip install -r doc/requirements.txt
2426 cd doc/
2527 make html
2628 make linkcheck
29+ make doctest
2730
2831 - name : Deploy doc
2932 uses : peaceiris/actions-gh-pages@v3
Original file line number Diff line number Diff line change 1616 runs-on : ubuntu-latest
1717 steps :
1818 - uses : actions/checkout@v2
19-
19+ - name : Install LaTeX for math support
20+ run : |
21+ sudo apt-get update
22+ sudo apt-get install texlive-full
2023 - name : generate doc
2124 run : |
2225 pip install -r requirements.txt
Original file line number Diff line number Diff line change 3939 - name : Test with pytest
4040 run : |
4141 pytest --cov=rbnet --cov-report=xml --cov-report=html --junitxml=junit/test-results.xml
42- - name : Upload coverage reports to Codecov
42+ - name : Upload coverage to Codecov
4343 uses : codecov/codecov-action@v3
44- env :
45- CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
4644 with :
4745 env_vars : OS,PYTHON
4846 fail_ci_if_error : true
Original file line number Diff line number Diff line change 1818# -- Project information -----------------------------------------------------
1919
2020project = 'rbnet'
21- copyright = '2022 , Robert Lieck'
21+ copyright = '2021 , Robert Lieck'
2222author = 'Robert Lieck'
2323
2424
5858# don't show the "View page source" link in the RTD theme
5959html_show_sourcelink = False
6060# use svg in imgmath extension
61- imgmath_image_format = 'svg'
61+ imgmath_image_format = 'svg'
6262# intersphinx mappings
6363intersphinx_mapping = {}
6464# report broken links
You can’t perform that action at this time.
0 commit comments