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.
1 parent cb804a3 commit c05c4a5Copy full SHA for c05c4a5
1 file changed
.github/workflows/build_docs.yml
@@ -25,19 +25,21 @@ jobs:
25
with:
26
python-version: "3.10"
27
28
- - name: Install dependencies
29
- run: python3 -m pip install -r requirements-docs.txt
30
-
31
- name: Cache
32
id: cache
33
uses: actions/cache@v3
34
35
path: |
36
~/.cache/pip
+ ~/_build
37
key: cache_v1
38
restore-keys: |
39
cache_v1
40
+ - name: Install dependencies
+ run: python3 -m pip install -r requirements-docs.txt
41
+
42
43
- name: Build docs
44
run: jupyter book build .
45
0 commit comments