We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d65cf4 commit 7e8e8d8Copy full SHA for 7e8e8d8
1 file changed
.github/workflows/deploy_book.yml
@@ -25,10 +25,17 @@ jobs:
25
uses: actions/setup-python@v2
26
with:
27
python-version: 3.8
28
+
29
+ - name: cache installation
30
+ uses: actions/cache@v2
31
+ with:
32
+ path: ${{ env.pythonLocation }}
33
+ key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements.txt') }}
34
35
- name: Install dependencies
36
run: |
37
pip install -r requirements.txt
38
39
# Build the book
40
- name: Build the book
41
0 commit comments