8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b7eee9 + 2bb9264 commit 1d0f4aaCopy full SHA for 1d0f4aa
.github/workflows/ci.yaml
@@ -29,10 +29,15 @@ jobs:
29
- name: "Install Sphinx dependencies"
30
run: sudo apt-get install python-dev build-essential
31
32
- - name: "Install Sphinx"
33
- run: pip install --user sphinx
+ - name: "Cache pip"
+ uses: actions/cache@v1
34
+ with:
35
+ path: ~/.cache/pip
36
+ key: ${{ runner.os }}-pip-${{ hashFiles('_build/.requirements.txt') }}
37
+ restore-keys: |
38
+ ${{ runner.os }}-pip-
39
- - name: "Install custom requirements via pip"
40
+ - name: "Install Sphinx + requirements via pip"
41
run: pip install -r _build/.requirements.txt
42
43
- name: "Build documentation"
0 commit comments