This commit is contained in:
Adam J. Stewart 2023-02-25 23:36:03 -06:00
Родитель bf1eb37953
Коммит 5276c53a06
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C66C0675661156FC
2 изменённых файлов: 12 добавлений и 4 удалений

8
.github/workflows/release.yaml поставляемый
Просмотреть файл

@ -55,6 +55,8 @@ jobs:
run: pytest -m slow --durations=10
notebooks:
name: notebooks
env:
TMPDIR: ${{ runner.temp }}
runs-on: ubuntu-latest
steps:
- name: Clone repo
@ -67,8 +69,10 @@ jobs:
uses: actions/cache@v3.2.5
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }}
path: |
${{ env.pythonLocation }}
${{ runner.temp }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }}-${{ hashFiles('docs/tutorial/**') }}
- name: Install pip dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |

8
.github/workflows/tutorials.yaml поставляемый
Просмотреть файл

@ -13,6 +13,8 @@ on:
jobs:
notebooks:
name: notebooks
env:
TMPDIR: ${{ runner.temp }}
runs-on: ubuntu-latest
steps:
- name: Clone repo
@ -25,8 +27,10 @@ jobs:
uses: actions/cache@v3.2.4
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }}
path: |
${{ env.pythonLocation }}
${{ runner.temp }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.cfg') }}-${{ hashFiles('docs/tutorial/**') }}
- name: Install pip dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |