File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 pull_request :
55 push :
66 branches : main
7+ workflow_dispatch :
78
89jobs :
910 test :
@@ -17,19 +18,14 @@ jobs:
1718
1819 steps :
1920 - uses : actions/checkout@v2
20- - uses : actions/cache@v2
21- with :
22- path : ~/.cache/pip
23- key : ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
24- restore-keys : |
25- ${{ runner.os }}-pip-
2621 - uses : actions/setup-python@v2
2722 with :
2823 python-version : ${{ matrix.python-version }}
24+ cache : pip
2925 - name : Install Dependencies
3026 run : python3 -m pip install -U pip -r requirements.txt
3127 - name : Build Docs
32- run : sphinx-build -n -W -q -b html -d _build/doctrees . _build/html
28+ run : sphinx-build --color -n -W -b html -d _build/doctrees . _build/html
3329 - name : Link Check
34- run : sphinx-build -b linkcheck -d _build/doctrees . _build/linkcheck
30+ run : sphinx-build --color - b linkcheck -d _build/doctrees . _build/linkcheck
3531 continue-on-error : true
You can’t perform that action at this time.
0 commit comments