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

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

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

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

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