From 99257d8a2bb598cc446de7b62ea460ae786c1ccd Mon Sep 17 00:00:00 2001 From: Brian Gunnarson Date: Mon, 30 Sep 2024 14:52:46 -0700 Subject: [PATCH] go back to original cache setup --- .github/workflows/push-pr_workflow.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/push-pr_workflow.yml b/.github/workflows/push-pr_workflow.yml index 59404df2..9085bdab 100644 --- a/.github/workflows/push-pr_workflow.yml +++ b/.github/workflows/push-pr_workflow.yml @@ -101,6 +101,12 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Check cache + uses: actions/cache@v2 + with: + path: ${{ env.pythonLocation }} + key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/release.txt') }}-${{ hashFiles('requirements/dev.txt') }} + # - name: Cache Python dependencies # uses: actions/cache@v2 # with: @@ -172,6 +178,12 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Check cache + uses: actions/cache@v2 + with: + path: ${{ env.pythonLocation }} + key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/release.txt') }}-${{ hashFiles('requirements/dev.txt') }} + # - name: Cache Python dependencies # uses: actions/cache@v2 # with: @@ -256,6 +268,12 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Check cache + uses: actions/cache@v2 + with: + path: ${{ env.pythonLocation }} + key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/release.txt') }}-${{ hashFiles('requirements/dev.txt') }} + # - name: Cache Python dependencies # uses: actions/cache@v2 # with: