Skip to content

Commit 1e9fb54

Browse files
authored
fix the doctests installation cache (#66)
* hard-code the python version instead of using a non-existent matrix * reformatting
1 parent fee2fed commit 1e9fb54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci-additional.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
uses: actions/cache@v2
2525
with:
2626
path: ~/.cache/pip
27-
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}-${{hashFiles('ci/requirements/**.txt')}}
27+
key: ${{ runner.os }}-pip-py3.8-${{ hashFiles('ci/requirements/**.txt') }}
2828
restore-keys: |
29-
${{ runner.os }}-pip-py${{ matrix.python-version }}-
29+
${{ runner.os }}-pip-py3.8-
3030
- name: upgrade pip
3131
run: |
3232
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)