File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
22
id : cache
23
23
with :
24
24
path : ${{ env.pythonLocation }}
25
- key : ${{ runner.os }}-python-docs-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-v03
25
+ key : ${{ runner.os }}-python-docs-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml', 'requirements-docs.txt' ) }}-v03
26
26
- name : Install docs extras
27
27
if : steps.cache.outputs.cache-hit != 'true'
28
28
run : pip install -r requirements-docs.txt
Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ jobs:
23
23
python-version : ${{ matrix.python-version }}
24
24
# Issue ref: https://github.com/actions/setup-python/issues/436
25
25
# cache: "pip"
26
- cache-dependency-path : pyproject.toml
26
+ # cache-dependency-path: pyproject.toml
27
27
- uses : actions/cache@v3
28
28
id : cache
29
29
with :
30
30
path : ${{ env.pythonLocation }}
31
- key : ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-test-v03
31
+ key : ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml', 'requirements-tests.txt' ) }}-test-v03
32
32
- name : Install Dependencies
33
33
if : steps.cache.outputs.cache-hit != 'true'
34
34
run : pip install -r requirements-tests.txt
57
57
python-version : ' 3.8'
58
58
# Issue ref: https://github.com/actions/setup-python/issues/436
59
59
# cache: "pip"
60
- cache-dependency-path : pyproject.toml
60
+ # cache-dependency-path: pyproject.toml
61
61
62
62
- name : Get coverage files
63
63
uses : actions/download-artifact@v3
You can’t perform that action at this time.
0 commit comments