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 a197e79 commit 1a99e56Copy full SHA for 1a99e56
‎.github/workflows/build_site.yml
@@ -11,12 +11,18 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v2
14
- - uses: actions/cache@v2 # FIXME: add pip + latex + gems
+ - uses: actions/cache@v2 # FIXME: add apt(latex)
15
with:
16
path: vendor/bundle
17
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
18
restore-keys: |
19
${{ runner.os }}-gems-
20
+ - uses: actions/cache@v2
21
+ with:
22
+ path: ~/.cache/pip
23
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '.github/python/requirements.txt') }}
24
+ restore-keys: |
25
+ ${{ runner.os }}-pip-
26
- name: Install TeXLive
27
uses: DanySK/[email protected]
28
- id: setup-python
0 commit comments