File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,19 +13,23 @@ jobs:
1313
1414 steps :
1515 - name : Checkout code
16- uses : actions/checkout@v3
16+ uses : actions/checkout@v2
1717
1818 - name : Set up Python ${{ matrix.python-version }}
19- uses : actions/setup-python@v4
19+ uses : actions/setup-python@v2
2020 with :
2121 python-version : ${{ matrix.python-version }}
2222
23+ - name : Give permission to run scripts
24+ run : chmod +x ./docs/scripts/doc8_style_check.sh
25+
2326 - name : Install Dependencies
24- run : pip install -e .[docs]
27+ working-directory : ./docs
28+ run : pip install -r requirements.txt
2529
2630 - name : Check Sphinx Documentation build minimally
2731 working-directory : ./docs
28- run : sphinx-build -E -W source build
32+ run : sphinx-build -b linkcheck -EW source build
2933
3034 - name : Check for documentation style errors
3135 working-directory : ./docs
You can’t perform that action at this time.
0 commit comments